- web-view 传参过大 服务器400?
<web-view src="{{url}}"></web-view> url后面拼接的参数太大 导致跳转访问服务器上的一个html文件时 报400 错误,参数小时就没问题。服务器上的html就是一个静态的资源文件。请问有什么办法解决一下。
2020-10-23 - wx.login无响应
<button open-type="getUserInfo" lang="zh_CN" bindgetuserinfo="getUserInfo" class="nameNOLogin"style="">点击登录</button> getUserInfo - wx.login({ 下面到这里就进不去了 ,在开发工具中没问题,用手机(华为荣耀V10,Version7.0.6)调试就有问题,手机上不打开调试就不行打开调试就可以 onLoad: function (options) { var that=this; wx.getStorage({ key: 'men_openid', success: function (res) { that.setData({ men_openid: res.data }); } }); if (app.globalData.userInfo) { this.setData({ userInfo: app.globalData.userInfo, hasUserInfo: true }) } else if (this.data.canIUse){ // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回 // 所以此处加入 callback 以防止这种情况 app.userInfoReadyCallback = res => { this.setData({ userInfo: res.userInfo, hasUserInfo: true }); //请求个人中心信息 this.personalCenterInformation(); } } else { // 在没有 open-type=getUserInfo 版本的兼容处理 wx.getUserInfo({ success: res => { app.globalData.userInfo = res.userInfo this.setData({ userInfo: res.userInfo, hasUserInfo: true }); } }) } }, //登录授权 getUserInfo: function (e) { var that=this; var imgcommon = app.globalData.imgcommon; // app.globalData.userInfo = e.detail.userInfo; if (e.detail.errMsg == "getUserInfo:ok") { that.setData({ userInfo: e.detail.userInfo, hasUserInfo: true }); wx.login({ //到这里就进不去了 success: res => { var code = res.code;//登录凭证 wx.request({ url: imgcommon+'WeChatMallService/getUserinfoMall', data: { encryptedData: e.detail.encryptedData, iv: e.detail.iv, code: code }, success: function (rest) { console.log(JSON.stringify(rest)) var openid = rest.data.result[0].strPar2; //返回openid getApp().globalData.men_openid = openid; wx.setStorage({ key: 'men_openid', data: openid }); if (rest.data.ret=="3"){//提示绑定手机 that.setData({ dialogShow: true }) } else if (rest.data.ret == "1"){ wx.setStorageSync("configuration", rest.data.result); that.personalCenterInformation(); }else{ that.personalCenterInformation(); } } }); } }); } },
2019-09-30 - 小程序用户画像省份未知
小程序统计-用户画像-地区分布中省份还会显示未知嘛?
2019-02-21 - 获取用户信息慢
用苹果6手机 测试小程序登录时获取用户信息慢,有遇到这种情况的吗?正式版也这样,或者可不可能与后台处理code的地方有关?
2019-01-31 - 微信公众平台文档空白页
文档怎么变成空白页了,连源码都看不到了 [图片]
2018-12-20