FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

JavaScript-plugin/jQuery-free at master · instanceofs/JavaScript-plugin · GitHub

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Usage

//init
<script src="./server.js"></script>
or
import Ajax from './server.js';

//use
Ajax({
	data: data, //request data
	url: url, //request url
	dataType: 'jsonp', //jsonp or not
	type: 'get', //request method, support 'get' and 'post'
	headers: {
		header1: 'aaa',
		header2: 'bbb'
	},
	success: function(json) {
		console.log(json);
	},
	fail: function(json) {
		console.log(json);
	},	
	done: function(json) {
		console.log(json);
	}
});


Back | FazBrowse Home | New Git URL