小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在ios和某些安卓机型上,用户在进入某个页面时,该页面一直在加载,显示不出来,如下图。该页面的onReady函数里有网络请求。大部分机型都可正常打开。请问要怎么解决呢?
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
微信版本更新试下?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
data:{
userLocation: getApp().globalData.userLocation,
},
onLoad: function (options) {
onLoad:
function
(options) {
this
.data.printer = getApp().globalData.printer;
let print_config = app.globalData.print_config ;
if
(print_config)
.setData({ currentColor: print_config.currentColor, currentSide: print_config.currentSide,delivery_status:print_config.delivery_status})
wx.setNavigationBarTitle({
title: wx.T.TITLE_CREATE_JOB,
})
getPrinterConfig(){
$Toast({
type:
'loading'
});
(!
.data.printer.id){
content:
'请选择打印机'
,
'error'
.setData({printer:getApp().globalData.printer})
return
;
}
util.commonPostRequest(host +
'/client/printer/'
{ service_id:
.data.printer.id }
).then(res => {
console.log(res);
$Toast.hide();
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady:
() {
.getPrinterConfig();
这是该页面的部分代码,麻烦大家了~~
提供可复现问题的代码片段
请问是分包内容吗?,
我知道的情况:上传代码的时候开启了代码保护上传,分包内容不能加载。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
微信版本更新试下?
data:{
userLocation: getApp().globalData.userLocation,
},
onLoad:
function
(options) {
this
.data.printer = getApp().globalData.printer;
let print_config = app.globalData.print_config ;
if
(print_config)
this
.setData({ currentColor: print_config.currentColor, currentSide: print_config.currentSide,delivery_status:print_config.delivery_status})
wx.setNavigationBarTitle({
title: wx.T.TITLE_CREATE_JOB,
})
},
getPrinterConfig(){
$Toast({
type:
'loading'
});
if
(!
this
.data.printer.id){
$Toast({
content:
'请选择打印机'
,
type:
'error'
});
this
.setData({printer:getApp().globalData.printer})
return
;
}
util.commonPostRequest(host +
'/client/printer/'
,
{ service_id:
this
.data.printer.id }
).then(res => {
console.log(res);
$Toast.hide();
}
});
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady:
function
() {
this
.getPrinterConfig();
},
这是该页面的部分代码,麻烦大家了~~
提供可复现问题的代码片段
请问是分包内容吗?,
我知道的情况:上传代码的时候开启了代码保护上传,分包内容不能加载。