AJAX plugin for IML

ajax plugin used by Iron Man

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name           AJAX plugin for IML
// @description    ajax plugin used by Iron Man
// @namespace      https://greasyfork.org/users/136230
// @description:ru ajax плагин от Iron Man
// @include        *
// @author         Iron_man
// @date           2018.02.04
// @version        1.0.2
// @grant          none
// ==/UserScript==
(function(){
	IML.extend({
		ajax: function( request ){
			if( !request )
				return;
			var evt_types = ['onload', 'onreadystatechange', 'onerror', 'onprogress'],
				xhr, key;
			request.method = request.method || 'GET';
			if( request.method.toUpperCase() === 'GET' && request.data ){
				request.url += '?' + request.data;
				request.data = '';
			}
			request.async = request.async === false ? request.async : true;
			if( window.XMLHttpRequest )
				xhr = new XMLHttpRequest();
			else if( window.ActiveXObject ){
				xhr = new ActiveXObject('Msxml2.XMLHTTP');
			}
			if( !xhr ){
				console.error("[IML.ajax] can't create xhr");
				return;
			}
			xhr.open( request.method, request.url, request.async );
			for( key in request.headers )
				xhr.setRequestHeader( key, request.headers[key] );
			evt_types.forEach( function(type){
				if( request[type] )
					xhr[type] = function(event){request[type].call( xhr, xhr.responseText, event );};
			});
			xhr.send( request.data || null );
		},
	});
})();