前端ajax 手动回收资源

   $.ajax({
                    url : contextPath + "/AuditoriumManagmentController/editAutoCamera.do",
                    dataType : "json",
                    type : "post",
                    data : {
                        "name" : ,
                        "class" : "",
                        "age" : "",
                    },
                    success : function(data) {
                    },
       
            complete : function(XHR,TS){
                        XHR=null;
                    }

                });



其中:

complete : function(XHR,TS){
                        XHR=null;
                    }


手动回收资源。

你可能感兴趣的:(前端ajax 手动回收资源)