Extjs中对ajax中request方法的重写,对请求的过滤

前端之家收集整理的这篇文章主要介绍了Extjs中对ajax中request方法的重写,对请求的过滤前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

涛哥实力派,是一匹千里马,可惜了水货上司。

失败发生在彻底的放弃之后。我对我的上司失望极了。

公司最近在完成一个项目,项目已经进行到尾声了,还没有进行对回话为空进行过滤。在涛哥提出后,上司研究了半天解决不了,最后丢给涛哥解决。虽说解决问题是每个人的义务,不是每个人的责任。但涛哥还是抱着学习的态度,解决问题。最终得以解决。直接上重新代码

Ext.override(Ext.Ajax,{
	request: function(options) {
		options = options || {};
		if(options.url&&options.url.indexOf('login.jsp')>-1){
			location.href='http://download.csdn.net/detail/xmt1139057136/7113051';
			return;
		}
		var me = this,scope = options.scope || window,username = options.username || me.username,password = options.password || me.password || '',async,requestOptions,request,headers,xhr;
		if (me.fireEvent('beforerequest',me,options) !== false) {
			requestOptions = me.setOptions(options,scope);
			if (me.isFormUpload(options)) {
				me.upload(options.form,requestOptions.url,requestOptions.data,options);
				return null;
			}
			if (options.autoAbort || me.autoAbort) {
				me.abort();
			}
			async = options.async !== false ? (options.async || me.async) : false;
			xhr = me.openRequest(options,username,password);
			headers = me.setupHeaders(xhr,options,requestOptions.params);
			request = {
				id: ++Ext.data.Connection.requestId,xhr: xhr,headers: headers,options: options,async: async,timeout: setTimeout(function() {
					request.timedout = true;
					me.abort(request);
				},options.timeout || me.timeout)
			};
			me.requests[request.id] = request;
			me.latestId = request.id;
			if (async) {
				xhr.onreadystatechange = Ext.Function.bind(me.onStateChange,[request]);
			}
			xhr.send(requestOptions.data);
			if (!async) {
				return me.onComplete(request);
			}
			return request;
		} else {
			Ext.callback(options.callback,options.scope,[options,undefined,undefined]);
			return null;
		}
	}
});

这里判断如果你的ajax请求访问的是login.jsp页面跳转到csdn页面上。

这里在贴上在所有的ajax请求前,都加上beforerequest事件

Ext.Ajax.addListener("beforerequest",function(conn,eOpts ){
	if(options){
		if(options.url&&options.url.indexOf('UserReport-getDeviceReport')>-1){
			location.href='http://download.csdn.net/detail/xmt1139057136/7112943';
			return;
		}
	}
},this);

方法有很多,我这里使用的是事件,后台使用过滤器,如果发现回话为空null,我就修改response

response.setContentType("text/html;charset=UTF-8;ifLogin=ERROR");
然后在返回的结果里判断,存在content-type存在ifLogin=ERROR,就跳转后台登录页面
Ext.Ajax.addListener("requestcomplete",response,eOpts){
	var msg = response.getAllResponseHeaders();
	if(msg['content-type'].indexOf('ifLogin=ERROR') != -1){
		window.location.href=serverPath+'admin/login.jsp';
	}
},this);
好了,到这里就结束了。欢迎大家关注我的个人博客
原文链接:https://www.f2er.com/ajax/165029.html

猜你在找的Ajax相关文章