小程序加载数据循序问题(求各路大神帮帮忙怎么解决)
onLoad: function (options) {
console.log(‘onLoad’);
var that = this;
GetSemesterList(that);
GetDepartmentList(that);
},
/**
* 生命周期函数–监听页面初次渲染完成
*/
onReady: function () {
console.log(‘onReady’);
var that = this;
GetPickerSemester(that);
GetPickerDepartment(that);
}
第一张是在安卓手机上运行加载顺序
第二张是在开发着工具运行