码迷,mamicode.com
首页 > 移动开发 > 详细

vuejs2+axios设置

时间:2017-04-14 23:00:28      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:bsp   取数据   .com   wrong   api   code   ==   function   status   

http://www.cnblogs.com/wisewrong/p/6402183.html

1 当前项目安装axios

$ cnpm i axios --save-dev

2 import axios from ‘axios‘;

axios.get(‘api/seller‘)
        .then((res) => {
        if (res.status === 200) {
          res = res.data;
          if (res.errno === ERR_OK) {
            this.seller = Object.assign({}, this.seller, res.data);
          }
        };
      })
      .catch(function(err) {
          console.log(err); // 从数据库获取数据出现问题
});

 

vuejs2+axios设置

标签:bsp   取数据   .com   wrong   api   code   ==   function   status   

原文地址:http://www.cnblogs.com/easyweb/p/6710843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!