Giter VIP home page Giter VIP logo

http.js's Introduction

Http.js

Http.js is an object oriented javascript library for making http requests and ajax calls.

Getting Started

This library is also AMD compatible can be require using require js.

GET

var request = new Http.Get(Url, Async);

request.start().then(function(response) {

}).fail(function(error, errorCode) {
		
});
  • Url: String.
  • Async: Boolean.

We instantiated Get request by providing Url and Async for process to be async or sync, but this will not process the request. For starting the request process we call start() method on request object and it return a promise.

POST

var request = new Http.Post(Url, Data, Async);
request.start().then(function(response) {

}).fail(function(error, errorCode){
	
});
  • Url: String.
  • Data: Any.
  • Async: Boolean.

We instantiated POST request by providing Url, Data and Async for process to be async or sync, For starting the request process we call start() method on request object and it returns a promise.

Reference

Request

The request object(Get, Post, Put, Delete) contains data and url, which can be changed after instantiating. E.g

var request = new Http.POST('/home',data);
request.start();
request.data = otherData;
request.url = otherUrl;

and request can be restart.

request.restart();

XHR object from request is also available on request object.

request.xhr;

http.js's People

Contributors

organic-scholar avatar jonathan-beebe avatar

Watchers

James Cloos avatar  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.