1. 安装依赖

  1. npm install flyio --save

2. 配置文件

main.js 全局配置

  1. var Fly=require("flyio/dist/npm/wx")
  2. var fly=new Fly
  3. ...//添加全局配置、拦截器等
  4. Vue.prototype.$http=fly //将fly实例挂载在原型上

3. 使用

src/index.vue

  1. onLoad() {
  2. var url="http://yapi.demo.qunar.com/mock/34830/carts";
  3. this.$http.get(url).then(res =>{
  4. return this.products=res.data
  5. })
  6. },

tips:mpvue对语法要求很严格,空格很容易出错

解决空格和空行报错

https://www.cnblogs.com/webwangjie/p/9817673.html