这下真的舒服了
这下真的舒服了
  • 发布:2020-01-09 11:45
  • 更新:2020-01-09 11:45
  • 阅读:681

mui.ajax的嵌套调用需要注意什么呢?

分类:MUI

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') ;  
    }  
}) ;
2020-01-09 11:45 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复