小程序
小游戏
企业微信
微信支付
扫描小程序码分享
onShow中弹出加载框,之后未进行关闭,加载框闪一下就消失了
6 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
把异步改成同步
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
请问解决了吗,我也遇到这个问题
问题现在解决了吗?我也遇到这种问题
检查代码有没有wx.showLoading 和 wx.showToast 同时使用,同时只能显示一个
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
麻烦整个代码片段来看看
--↓↓👍如果觉得有帮助的话请点个【赞】吧(我的小尾巴又肥来啦!)
onShow: function () {
wx.showLoading({
title: '直播加载中',
})
loginModel.getOpenId().then(res => {
const openid = res;
console.log(openid)
const liveUuid = this.data.liveUuid;
console.log(liveUuid);
return indexModel.getTokenAndKey({
liveUuid,
openid
});
}).then(res => {
console.log(res);
const client = this.client;
const channel = this.channel;
const token = res.data.data.Token;
const uid = res.data.data.uid;
client.init(this.appid, () => {
console.log("client init success");
// When native and applet communicate,
// you need to set roles to join the channel
client.setRole("audience");
console.log("setRole success")
// join the channel
client.join(token, channel, uid, () => {
console.log("join the channel success")
// add client subscribeEvents
// eg: error stream-add stream-removed
this.subscribeEvents(client);
},
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
把异步改成同步
请问解决了吗,我也遇到这个问题
问题现在解决了吗?我也遇到这种问题
检查代码有没有wx.showLoading 和 wx.showToast 同时使用,同时只能显示一个
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
麻烦整个代码片段来看看
--↓↓👍如果觉得有帮助的话请点个【赞】吧(我的小尾巴又肥来啦!)
onShow: function () {
wx.showLoading({
title: '直播加载中',
})
loginModel.getOpenId().then(res => {
const openid = res;
console.log(openid)
const liveUuid = this.data.liveUuid;
console.log(liveUuid);
return indexModel.getTokenAndKey({
liveUuid,
openid
});
}).then(res => {
console.log(res);
const client = this.client;
const channel = this.channel;
const token = res.data.data.Token;
const uid = res.data.data.uid;
client.init(this.appid, () => {
console.log("client init success");
// When native and applet communicate,
// you need to set roles to join the channel
client.setRole("audience");
console.log("setRole success")
// join the channel
client.join(token, channel, uid, () => {
console.log("join the channel success")
// add client subscribeEvents
// eg: error stream-add stream-removed
this.subscribeEvents(client);
})
})
})
},
--↓↓👍如果觉得有帮助的话请点个【赞】吧(我的小尾巴又肥来啦!)