- 网络连接出错?
[图片]我部署在服务器的域名网址可以直接访问,没有问题
2022-09-02 - 云开发怎么获取用户的呢称和电话?
云开发怎么获取用户的呢称和电话?
2022-02-15 - 为什么赋值不上?
[图片] [图片]
2021-12-17 - 怎么赋值不上啊?
[图片] [图片]
2021-12-10 - 怎么将注册号的开发者账号Appid由:不使用云开发改为云开发?
怎么将注册号的开发者账号Appid由:不使用云开发改为云开发?
2021-12-02 - wx.reLaunch不能跳转?
wx.login({ success: function success(res) { console.log('tomain', res); wx.request({ url: app.globalData.URL + 'User/Login', dataType: 'json', method: 'GET', data: { code: res.code }, success: function success(result) { console.log('requestwww', result); wx.setStorageSync('OIASK', result.data.data); debugger wx.reLaunch({ url: '../getphone/getphone?' }) } }); } }); [图片]
2021-11-18 - 获取openid时为空, wx.login方法的code值有获取到。后端报错40163?
wx.request({这个行代码处拿不到openid,data为空 // pages/loads/loads.js Page({ /** * 页面的初始数据 */ data: { providerList: [], hasUserInfo: false, userInfo: {} }, handleClick:function(){ const app = getApp(); wx.getUserProfile({ desc: '用于完善会员资料', success: (res) => { // 这里就是点击了允许才拿到的信息。所以this.next方法放这里面 debugger console.log(res.userInfo), getApp().globalData.userInfo=res.userInfo, this.setData({ userInfo: res.userInfo, hasUserInfo: true }) //this.next() wx.login({ success: function success(res) { console.log('tomain', res); debugger wx.request({ url: app.globalData.URL + 'User/Login', dataType: 'json', method: 'GET', data: { code: res.code }, success: function success(result) { debugger console.log('requestwww', result); wx.setStorageSync('OIASK', result.data.data); // wx.reLaunch({ // url: '../logint/logint?' }); } }); } }); } }) }, next(e){ console.log("userInfo",getApp().globalData.userInfo) wx.redirectTo({ url: '/pages/getphone/getphone', }) }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })
2021-11-18 - 请问怎么获取手机号,并且怎么调用全局接口验证手机号登陆呢?
请问怎么获取手机号,并且怎么调用全局接口验证手机号登陆呢?
2021-11-18 - 请问怎么获取手机号,并且怎么调用全局接口验证手机号登陆呢?
请问怎么获取手机号,并且怎么调用全局接口验证手机号登陆呢?
2021-11-18 - 怎么微信授权点击了“允许”后,然后再执行下一个方法?
[图片] // pages/load/load.js Page({ data: { userInfo: {}, hasUserInfo: false, canIUseGetUserProfile: false, }, next:function(e){ console.log("userInfo",getApp().globalData.userInfo) wx.redirectTo({ url: '/pages/login/login', }) }, onLoad() { var _this=this; // //加载等待 // wx.showLoading({ // title: '加载中', // }) wx.login({ success (res) { if (res.code) { //发起网络请求 // wx.request({ // url: 'https://example.com/onLogin', // data: { // code: res.code // } // }) //授权 if (wx.getUserProfile) { _this.setData({ canIUseGetUserProfile: true }) //获取返回对象 getApp().globalData.userInfo=_this.userInfo; //_this.next(); } } else { console.log('登录失败!' + res.errMsg) } } }) // //延时消失 // setTimeout(function(){ // wx.hideLoading() // },2000) }, getUserProfile(e) { // 推荐使用wx.getUserProfile获取用户信息,开发者每次通过该接口获取用户个人信息均需用户确认 // 开发者妥善保管用户快速填写的头像昵称,避免重复弹窗 wx.getUserProfile({ desc: '用于完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写 success: (res) => { console.log(res.userInfo), this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } }) }, getUserInfo(e) { // 不推荐使用getUserInfo获取用户信息,预计自2021年4月13日起,getUserInfo将不再弹出弹窗,并直接返回匿名的用户个人信息 this.setData({ userInfo: e.detail.userInfo, hasUserInfo: true }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })
2021-11-17