详细问题描述
(DCloud产品不会有明显的bug,所以你遇到的问题大都是在特定环境下才能重现的问题,请仔细描述你的环境和重现方式,否则DCloud很难排查解决你的问题)
[内容]
没有进入plusReady的回调
[步骤]
1、列表进入编辑页
2、编辑页保存返回列表页,刷新列表页,调用拉取数据接口
getList: function () {
var that = this;
if (that.offset == 0) {
that.list = [];
}
console.log('getList'+that.offset)//执行了有输出
h_AJAX('api/hotel/ma/user/address/fetch', {
offset: that.offset,
count: that.count
}, function (res) {})
var h_AJAX = function (action, data, callback) {
console.log(JSON.stringify(data))//执行了有输出
mui.plusReady(function () {
console.log('mui.plusReady' + networkinfo)//无输出
mui.ajax......
})
})
目前只在oppo上发现此问题,概率还是挺大的
0 个回复