本地测试,可以关闭https验证
代码
js
clickMe:function(){
this.setData({ tt: 'http demoHello 你点了我' })
wx.request({
url: 'http://localhost:8080/get/1', // 仅为示例,并非真实的接口地址
data: {
x: '',
y: ''
},
header: {
'content-type': 'application/json' // 默认值
},
success(res) {
console.log(res.data)
}
})
}
wxml
<!--page/component/httpdemo.wxml-->
<text>{{tt}}</text>
<button bindtap="clickMe">点击我</button>
效果:
#官方文档地址:添加链接描述
Post
clickPost: function () {
wx.request({
url: 'http://localhost:8080/updatecomputer', // 仅为示例,并非真实的接口地址
method:'POST',
data: {
id: 1,
name: 'SSS',
price: 123
},
header: {
'content-type': 'application/x-www-form-urlencoded;charset=utf-8'
},
success(res) {
console.log(res.data)
}
})
}
Get
clickMe:function(){
this.setData({ tt: 'http demoHello 你点了我' })
wx.request({
url: 'http://localhost:8080/get/1', // 仅为示例,并非真实的接口地址
data: {
x: '',
y: ''
},
header: {
'content-type': 'application/json' // 默认值
},
success(res) {
console.log(res.data)
}
})
},