手机App第一次启动,在引导页面预加载index.html, index页面有6个子页面,预加载index的时候
其他几个子页面跟着index一起创建预加载,其中第一个子页面 和第4个子页面在App第一次启动的时候
自动下来刷新报错Object #<error> has no method 'pullupLoading' ,在init里写auto:true,和
if(mui.os.plus) {
mui.plusReady(function() {
setTimeout(function() {
mui('#pullrefresh1').pullRefresh().pullupLoading();
}, 5000);
});
} else {
mui.plusReady(function() {
setTimeout(function() {
mui('#pullrefresh1').pullRefresh().pullupLoading();
}, 200);
});
}
这种方式都没用
就第一次启动会出现这种问题,第二次启动就没事,这个问题很严重,第一次失败意味着首页白屏,
下拉刷新和上拉加载都用不了,官方给看一下 谢谢