.JS源码:
bindtapNo2: function () {
var that = this
wx.request({
url: ‘https://api.weixin.qq.com/sns/jscode2session’,
data: {
},
header: {
“Content-Type”: “applciation/json”
},
success: function (res) {
console.log(res);
that.setData({
message: res.statusCode //这里获取的statusCode数据“200”,图一
})
},
})
},
图一:
.wxml源码:
<button bindtap=‘bindtapNo2’ type=‘primary’ style=‘margin:5px’>调取其他数据</button>
<view style=‘color:blue’>显示的数据:</view>
<text>{{message}}</text>
//做了个按钮,点一下就显示statusCode数据,在微信开发者工具上显示正常,图二
图二:
现在问题是,在微信开发工具上显示有200这个数字,我扫码预览在手机上查看,点按钮就不出现200这个数字,小白刚入行不是很懂,还请请教。
运行环境:
1、因为服务器备案还没审核下来,所以勾上了不安全域名。