- 开发者工具能显示调用到的数据,手机却不能显示
.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、因为服务器备案还没审核下来,所以勾上了不安全域名。 [图片]
2018-01-28 - tabBar的Bug
正常可以通过: "tabBar": { "color": "#000000", "selectedColor": "#00ff30", "backgroundColor": "#f1f1f1", "position":"top", "list": [ { 无法通过,如果把position注释掉就会通过不了: "tabBar": { "color": "#000000", "selectedColor": "#00ff30", "backgroundColor": "#f1f1f1", // "position":"top", "list": [ {
2017-12-21