1) 比如有个场景是先请求了URLA, 在回调方法中拿到值去请求URLB. 在嵌套使用mui.ajax的时候需要注意些什么呢?
2) 在测试的时候安卓好用的, 但是IOS这边会接受不到data的请求参数. 这是什么问题呢..
大概的代码是这样的.
mui.ajax( URLA , { dataType : "json", type : 'POST', data : {xx : xx, aa : aa},
success : function(json){
if(json["flag"] == 0){
mui.ajax( URLB , { dataType : "json", type : 'POST', data : {xx : json.xxx, aa : json.aaa},
success : function(res){
// TODO get json data , get res data
},
error : function(xhr, error){
plus.nativeUI.toast('request error') ;
}
}) ;
}
},
error : function(xhr, error){
plus.nativeUI.toast('request error') ;
}
}) ;
0 个回复