GithubHelp home page GithubHelp logo

itzhu / httpx.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pandao/httpx.js

0.0 2.0 0.0 160 KB

The simple HTTP / RESTful requests library of JavaScript (XHR).

License: MIT License

JavaScript 100.00%

httpx.js's Introduction

httpx.js

The simple HTTP / RESTful requests library of JavaScript (XHR).

Basic support XHR1 (XMLHttpRequest Level 1), Promise and XHR2 (XMLHttpRequest Level 2) support later.

Install

bower install httpx.js --save

Methods

  • GET
  • POST
  • PUT
  • PATCH
  • DELETE
  • Other
  • JSON
  • JSONP
  • getScript

Compatibility

  • Firefox 4.0+
  • Chrome 7+
  • IE 9+
  • Opera 11.60+
  • Safari 5.1.4+

Examples

Description :

get|post|put|patch|delete|json(alias getJSON)(url, [data], [callback], [error]);

GET :

httpx.get("http://localhost/http-test/get.php?foo=Level1&bar=XHR&zh=中文", function(data) {
	//console.log(data, this);
}, function(method, url) {
	console.error("Custom Error", method, url, this.status, this.statusText);
});

POST :

httpx.post("http://localhost/http-test/post.php?edfd=eedfd&dfsdf=ere", {
	a : 12,
	b : "bbbb",
	c : 123489
}, function(data) {
	console.log(data, this);
});

PUT :

httpx.put("http://localhost/http-test/put.php?edfd=eedfd&dfsdf=ere", {
	a : 12,
	b : "bbbb",
	c : 123489
}, function(data) {
	console.log(data, this);
});

PATCH :

httpx.patch("http://localhost/http-test/patch.php?edfd=eedfd&dfsdf=ere", {
	a : 12,
	b : "bbbb",
	c : 123489
}, function(data) {
	console.log(data, this);
});

DELETE :

httpx.delete("http://localhost/http-test/delete.php?edfd=eedfd&dfsdf=ere", {
	a : 12,
	b : "bbbb",
	c : 123489
}, function(data) {
	console.log(data, this);
});

JSON (get json) :

// Alias getJSON(), like jQuery
httpx.json("http://localhost/http-test/get-json.php?temp="+(new Date).getTime(), {
	test : 123
}, function(json) {
	console.log("get json =>", json);
});

JSONP :

jsonp(url, [data], [callback], [callbackName]); // callbackName for query string name
httpx.jsonp("http://192.168.1.2/http-test/jsonp.php?temp="+(new Date).getTime(), {
	test : 123
}, function(json) {
	console.log("jsonp =>", json);
}, "callback");

getScript :

httpx.getScript("http://192.168.1.2/http-test/test.js", function() {
	test();
});

Options

defaults :

{
	async         : true,
	timeout       : 3000,
	method        : "GET",
	url           : "",
	data          : "",
	dataType      : "text",
	headers       : {},
	contentType   : "text/plain; charset=UTF-8",
	jsonp         : "callback",    // for query string
	success       : function() {},
	error         : function(method, url) {},
	ontimeout     : function(method, url) {}
}

usage :

httpx.request({
	url : "http://localhost/http-test/head.php",
	method : "HEAD",  // Custom http method
	headers : {},  // Custom http headers
	success : function(data) {
		console.log(data);
	}
});

httpx.get({
	url : "http://localhost/http-test/get.php?foo=bar",
	headers : {
		"xxxxxxx" : "xxxxx"
	},
	success : function(data) {
		console.log(data);
	}
});

httpx.post({
	url : "http://localhost/http-test/post.php?foo=bar",
	data : {
		id : 123,
		title : "xxxxx"
	},
	headers : {
		"xxxxxxx" : "xxxxx"
	},
	success : function(data) {
		console.log(data);
	}
});

// put/patch/delete/json ...

Changes

Change logs

License

The MIT License.

Copyright (c) 2015 Pandao

httpx.js's People

Contributors

pandao avatar

Watchers

James Cloos avatar itzhu avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.