============问题描述============
define([‘jquery‘,‘underscore‘,‘backbone‘,‘store‘,‘utils‘,‘params‘,‘constant‘,‘lang/en-us‘,‘lang/zh-cn‘,‘SGPlugin‘,‘plugin/linq‘], function($,_,Backbone,store,utils,params,constant,English, Chinese,SGPlugin){ var SGClient = { baseUrl:null, currentRequest:null,//当前请求 /** 设置token **/ setToken:function(_token){ $.ajaxSetup(_token); }, /** 初始化方法 **/ initialize:function(){ var self = this; self.baseUrl = utils.config.get(‘baseUrl‘); //android 序列号 if(utils.browerVersion(‘android‘)){ store.getDeviceCode(function(array){ store.setNumber(array[3]); }); }
上面的currentRequest为何能调用about方法
abortAjax:function(){ var self = this; if(self.currentRequest){ self.currentRequest.abort(); } },
============解决方案1============
currentRequest 这个东西也是一个对象。你可以找到currentRequest 的定义在你的JS库里面,里面有对应的方法。
时间: 2024-10-13 10:58:26