项目作者: zhangmingfeng

项目描述 :
egg axios plugin
高级语言: JavaScript
项目地址: git://github.com/zhangmingfeng/egg-axios.git
创建时间: 2018-04-17T13:57:14Z
项目社区:https://github.com/zhangmingfeng/egg-axios

开源协议:MIT License

下载


egg-axios

axios plugin for Egg.js.

NOTE: This plugin just for integrate axios into Egg.js, more documentation please visit https://github.com/axios/axios.

Install

  1. $ npm i --save egg-axios

Usage & configuration

  • config.default.js
  1. exports.http = {
  2. headers: {
  3. common: {
  4. 'Content-Type': 'application/json; charset=UTF-8'
  5. }
  6. },
  7. timeout: 10000
  8. };
  • config/plugin.js
  1. exports.http = {
  2. enable: true,
  3. package: 'egg-axios'
  4. }

example

  1. // controller.js or service.js
  2. // with promise
  3. this.ctx.http.get('/user', {id: 123}).then((data)=>{ // ==> /user?id=123
  4. // data is only remote server response data
  5. console.log(data);
  6. }).catch((err)=>{
  7. console.error(err);
  8. });
  9. this.ctx.http.get('/user/:id', {id: 123}).then((data)=>{ // ==> /user/123
  10. // data is only remote server response data
  11. console.log(data);
  12. }).catch((err)=>{
  13. console.error(err);
  14. });
  1. this.ctx.http.post('/post', {postId: 123}).then((data)=>{
  2. // data is only remote server response data
  3. console.log(data);
  4. }).catch((err)=>{
  5. console.error(err);
  6. });
  1. // with await/async
  2. try {
  3. const data = await this.ctx.http.get('/user', {id: 123});
  4. console.log(data);
  5. } catch (e) {
  6. console.error(e)
  7. }
  1. try {
  2. const data = await this.ctx.http.post('/post', {postId: 123});
  3. console.log(data);
  4. } catch (e) {
  5. console.error(e)
  6. }

more example please visit https://github.com/axios/axios.