注意:1.小程序只能访问https接口地址
2.添加到小程序后台-开发-开发设置-服务器域名
3.开发时在详情-本地设置里取消域名判断(重启微信开发者工具)
wx.request({
url: 'ajaxUrl', //接口地址
method:'POST',
data: {
x: '',
y: ''
},
header: {
'content-type': 'application/json' // 默认值
},
success (res) {
console.log(res.data)
}
})
网友评论