1.1.2 • Published 7 years ago

ajax-promise-simple v1.1.2

Weekly downloads
39
License
-
Repository
github
Last release
7 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

7 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.8

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.0

8 years ago

0.0.1

8 years ago