服务器上可以访问部署的网址,但在外网访问不了部署的网址,是什么意思
网络连接出错?[图片]我部署在服务器的域名网址可以直接访问,没有问题
2022-09-02谢谢回答,原因找到了,我的是后端的appid和秘钥写成了另一个小程序的了
获取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我想弹框后点击“允许”后再执行:_this.next();
不弹微信授权框了?[图片] //授权:这行下面的方法中:_this.next(); // 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点击没有任何反应, Page({ data: { canIUse: wx.canIUse('button.open-type.getUserInfo') }, onLoad: function() { // 查看是否授权 wx.getSetting({ success (res){ if (res.authSetting['scope.userInfo']) { // 已经授权,可以直接调用 getUserInfo 获取头像昵称 wx.getUserInfo({ success: function(res) { console.log(res.userInfo) } }) } } }) }, bindGetUserInfo (e) { console.log(e.detail.userInfo) }, [图片]
微信授权登录问题,授权登录后没有反应?[图片] 点击授权并登录后,没有任何反应,打开调试模式、看到以下信息 [图片] 前端说他这个参数是个String,有没有人知道这是怎么回事呢?
2021-11-17