微信小程序ajax异步加载

微信小程序中的ajax异步加载使用wx.request实现。

参数如下:

参数名 类型 必填 说明
url String 开发者服务器接口地址
data Object、String 请求的参数
header Object 设置请求的 header , header 中不能设置 Referer
method String 默认为 GET,有效值:OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
dataType String 默认为 json。如果设置了 dataType 为 json,则会尝试对响应的数据做一次 JSON.parse
success Function 收到开发者服务成功返回的回调函数,res = {data: '开发者服务器返回的内容'}
fail Function 接口调用失败的回调函数
complete Function 接口调用结束的回调函数(调用成功、失败都会执行)
用法:

wx.request({
      url: 'http://localhost/dream/app/main.php?ShowClassify&offset=0&max=10&name=',
      data: {
        name: '' ,
        id: ''
      },
      success: function(res) {
       console.log(res)
      }
    })


你可能感兴趣的:(微信小程序和公众号开发)