- request问题
第一次打开小程序request请求不成功 , 第二次打开小程可以访问成功 模拟器上不会出现问题, 真机上会有,不管是android还是ios, 第一次错误提示 : request : fail url not in domain list 代码 : wx.login({ success : function(code){ wx.getUserInfo({ success : function(user){ var userCod = code.code; var nickName = user.userInfo.nickName wx.showModal({ title: 'title', content: 'code = ' + code.code +"user = " +user.userInfo.nickName, showCancel : false, success : function(res){ if(res.confirm){ wx.request({ url: 'http://***.com/hepcws/v2/restws/****', data: { "appid": "********e5be52", "secret": "******cb393a9de", "js_code": userCod, "nickName": nickName }, method: "POST", header: { 'content-type': 'application/json' }, success: function (res) { wx.showToast({ title: 'success : ' + res, }) that.setData({ userInfo: user.userInfo }) }, fail: function (res) { wx.showToast({ title: 'fail = ' + res.errMsg, }) }, complete: function (res) { } }) } } }) } }) } })
2017-07-14 - <template></template> 使用问题
我有一个公共的模块,所以使用了模板 [代码]template[代码],但是出现了一个问题,就是开发工具的上面显示正常,真机上无法显示,有遇到过类似情况的童鞋没?
2017-07-10 - Scroll-view 滚动条隐藏
::-webkit-scrollbar { width: 0; height: 0; color: transparent; } 这样写android系统可以隐藏滚动条,而ios无法隐藏 , 求解答!!!!
2017-06-15 - 禁止页面滚动
我想禁止程序某个页面滚动, 我在wxss是这样设置的 [图片] 这样子设置在开发工具里面有作用 但是用到真机上就不起作用了 ,求解!!!!!!!!!!
2017-06-01 - API问题
wx.openSetting() android系统可以打开 ios系统打不开,求解决!!!!!
2017-05-17 - 开发工具问题
使用最新版的 开发工具,在使用"关闭其他标签"后,使用Ctrl+s保存,会恢复之前关闭的其他标签。 如图: 1.使用"关闭其他标签"前 [图片] 2.关闭之后 [图片] 3.使用Ctrl+s保存之后 [图片]
2017-05-15 - IOS系统时间转化问题
IOS系统将一个固定的年月日时间转化成时间撮返回null,而android系统和开发工具不会出现,麻烦给个解决方法? 例如: var time = “2017-05-05 13:19:09”; var timestamp = new Date(time).getTime();
2017-05-05