1.1.2 • Published 9 years ago

ajax-promise-simple v1.1.2

Weekly downloads
39
License
-
Repository
github
Last release
9 years ago

#Description

A ajax with promise, browser don't supports promise. browse supports promise see https://www.npmjs.com/package/ajax-promise-in-browser

一个浏览器不支持promise的ajax 浏览器支持promise的请使用https://www.npmjs.com/package/ajax-promise-in-browser

#Usage 用法

var ajaxPromise = require('ajax-promise-simple')

/**
    有四个属性方法:
    ajaxPromise.get => return text
    ajaxPromise.getJSON  => return JSON
    ajaxPromise.post => return text
    ajaxPromise.postJSON  => return JSON
*/

ajaxPromise[get|getJSON|post|postJSON](url, params)
.then(function(data){
})
.catch(function(error){
})

###ES5

var ajax = require('ajax-promise-simple')

ajax.get('http://***/login', 
    {username:aaa, password:123456})
.then(function(data){
})
.catch(function(error){

})

###ES6

ajax.post('http://***/login', 
    {username:aaa, password:123456})
.then((data) => {
})
.catch((error) => {

})
1.1.2

9 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.8

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.0

10 years ago

0.0.1

10 years ago