1.0.3 • Published 4 years ago

porket-ajax v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

porket-ajax

这是一个基于promise封装的ajax请求库,仅用于浏览器端

usasge

ajax(options);

try {
    let res =  await ajax({
        url: 'url',
        method: "get"
    })
    console.log(res);
}  catch(e) {
    console.error(e);
}

options

  • url: request url
  • method: request method
  • data: request data, data is json format
1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago