收藏
回答

小程序体验版不开调试器无法登录,一直在提示登陆中,不想后端发请求,?

const getphonenumber : UniHelper.ButtonOnGetphonenumber = async (ev) => {

if (ev.detail.errMsg != "getPhoneNumber:ok") {

uni.showToast({

icon: 'none',

title: '参数错误',

})

} else {

await checkedAgreePrivacy()

const { encryptedData, iv } = ev.detail

const res = await wx.login()

uni.showLoading({ title: '正在登录...' })

const { send: sendAuthBindPhone } = useRequest(authBindPhone, { immediate: false });

sendAuthBindPhone({

phoneCode: ev.detail.code,

key: authKey.value,

encryptedData: encryptedData,

iv: iv,

code: res.code

}).then(async result => {

useAuthStore().setToken(result.token);

await useUserStore().setUserInfo(result)

await useUserStore().getUserInfo()

setTimeout(() => {

uni.hideLoading();

loginSuccess(result);

})

})

}

}

回答关注问题邀请回答
收藏

3 个回答

  • 那一抹微笑😊穿透阳光
    那一抹微笑😊穿透阳光
    03-26

    是不是没有配置请求域名

    03-26
    有用
    回复
  • จุ๊บ
    จุ๊บ
    03-25

    那就打开调试模式呗,还不想打开调试,还想请求,那就配置合法域名并配置SSL证书呗

    03-25
    有用
    回复
  • Mr.Zhao
    Mr.Zhao
    03-25

    没配置合法域名,你代码都变量也不能运行,自己调试看看吧

    03-25
    有用
    回复
登录 后发表内容