vue axios

vue的做者在vue2.0发布以后宣告---中止对vue-resource的更新,推荐使用axioshtml

前段时间用了用,如今说说其基本用法.前端

一.准备阶段 ----若是你只是个前端不会写接口或者大家要先后分离的话,你须要知道mockvue

这里交个你一个超级简单的方式node

1.建立一个mock文件夹jquery

2.建立tree.json而后随便写点数据上去webpack

3.修改dev-server里面的配置---记住修改这里的时候在你运行npm run build 的时候不会被build 因此须要你和后端人员协商好路径问题 避免 404ios

目录:bulid/dev-serverweb

 

 二 . 安装ajax

//安装
npm install axios

 

 三. 使用vue-router

在src/components文件夹下建立 RainAxios.vue

<template>
  <div>
    <div>msg: {{msg}}</div>
    <button @click='fn("../123")'>点击</button>
    <!--<audio autoplay="autoplay" src="audio/index.mp3"/>-->
  </div>
</template>
<style scoped>

</style>
<script>
  import Axios from 'axios'
  export default{
    data(){
      return {
        msg: 'hello Axios',
      }
    },
    components: {},
    methods: {
      fn: function () {
        var _this = this;
        Axios.get("./mock/tree.json")
          .then(function (rsp) {
            _this.msg = rsp.data.name
          })
      }
    }
  }
</script>

这个组件的需求很简单 ,  点击发送axios请求tree.json 并将返回值赋给msg 

 src/router/index.js

import Vue from 'vue'
import Router from 'vue-router'
import Axios1 from '@/components/RainAxios'

Vue.use(Router)

export default new Router({
  routes: [
    {
      path: '/',
      name: 'Axios',
      component: Axios1
    }
  ]
})

不用我结识了吧  ----这是我最后一次写如此详细的教程了 

之后只要是vue的东西都须要想一想是否须要改router里面的东西

 点击后值改变

若是你完成了上述功能 ---- 如今正式谈谈axios的用法了哦!!

axios提供了如下方法

axios.request(config)

axios.get(url[, config])

axios.delete(url[, config])

axios.head(url[, config])

axios.post(url[, data[, config]])

axios.put(url[, data[, config]])

axios.patch(url[, data[, config]])

能看懂吧!

不解释了!!!

建议最好配置一下相关配置 ----英文很差就不帮大家翻译了省得误导大家

{
  // “URL”是用于请求的服务器URL
  url: '/user',
 
  // 是在请求时使用的请求方法
  method: 'get', // 默认
 
  // baseURL  
  baseURL: 'https://some-domain.com/api/',
 
  // ` transformrequest ` 容许修改请求的数据后再发送到服务器
  transformRequest: [function (data) {
    // 作一些你想作的数据的改变
 
    return data;
  }],
 
  // `transformResponse` allows changes to the response data to be made before 
  // it is passed to then/catch 
  transformResponse: [function (data) {
    // Do whatever you want to transform the data 
 
    return data;
  }],
 
  // `headers` are custom headers to be sent 
  headers: {'X-Requested-With': 'XMLHttpRequest'},
 
  // `params` are the URL parameters to be sent with the request 
  // Must be a plain object or a URLSearchParams object 
  params: {
    ID: 12345
  },
 
  // `paramsSerializer` is an optional function in charge of serializing `params` 
  // (e.g. https://www.npmjs.com/package/qs, http://api.jquery.com/jquery.param/) 
  paramsSerializer: function(params) {
    return Qs.stringify(params, {arrayFormat: 'brackets'})
  },
 
  // `data` is the data to be sent as the request body 
  // Only applicable for request methods 'PUT', 'POST', and 'PATCH' 
  // When no `transformRequest` is set, must be of one of the following types: 
  // - string, plain object, ArrayBuffer, ArrayBufferView, URLSearchParams 
  // - Browser only: FormData, File, Blob 
  // - Node only: Stream 
  data: {
    firstName: 'Fred'
  },
 
  // `timeout` specifies the number of milliseconds before the request times out. 
  // If the request takes longer than `timeout`, the request will be aborted. 
  timeout: 1000,
 
  // `withCredentials` indicates whether or not cross-site Access-Control requests 
  // should be made using credentials 
  withCredentials: false, // default 
 
  // `adapter` allows custom handling of requests which makes testing easier. 
  // Return a promise and supply a valid response (see [response docs](#response-api)). 
  adapter: function (config) {
    /* ... */
  },
 
  // `auth` indicates that HTTP Basic auth should be used, and supplies credentials. 
  // This will set an `Authorization` header, overwriting any existing 
  // `Authorization` custom headers you have set using `headers`. 
  auth: {
    username: 'janedoe',
    password: 's00pers3cret'
  },
 
  // `responseType` indicates the type of data that the server will respond with 
  // options are 'arraybuffer', 'blob', 'document', 'json', 'text', 'stream' 
  responseType: 'json', // default 
 
  // `xsrfCookieName` is the name of the cookie to use as a value for xsrf token 
  xsrfCookieName: 'XSRF-TOKEN', // default 
 
  // `xsrfHeaderName` is the name of the http header that carries the xsrf token value 
  xsrfHeaderName: 'X-XSRF-TOKEN', // default 
 
  // `onUploadProgress` allows handling of progress events for uploads 
  onUploadProgress: function (progressEvent) {
    // Do whatever you want with the native progress event 
  },
 
  // `onDownloadProgress` allows handling of progress events for downloads 
  onDownloadProgress: function (progressEvent) {
    // Do whatever you want with the native progress event 
  },
 
  // `maxContentLength` defines the max size of the http response content allowed 
  maxContentLength: 2000,
 
  // `validateStatus` defines whether to resolve or reject the promise for a given 
  // HTTP response status code. If `validateStatus` returns `true` (or is set to `null` 
  // or `undefined`), the promise will be resolved; otherwise, the promise will be 
  // rejected. 
  validateStatus: function (status) {
    return status >= 200 && status < 300; // default 
  },
 
  // `maxRedirects` defines the maximum number of redirects to follow in node.js. 
  // If set to 0, no redirects will be followed. 
  maxRedirects: 5, // default 
 
  // `httpAgent` and `httpsAgent` define a custom agent to be used when performing http 
  // and https requests, respectively, in node.js. This allows to configure options like 
  // `keepAlive` that are not enabled by default. 
  httpAgent: new http.Agent({ keepAlive: true }),
  httpsAgent: new https.Agent({ keepAlive: true }),
 
  // 'proxy' defines the hostname and port of the proxy server 
  // `auth` indicates that HTTP Basic auth should be used to connect to the proxy, and supplies credentials. 
  // This will set an `Proxy-Authorization` header, overwriting any existing `Proxy-Authorization` custom headers you have set using `headers`. 
  proxy: {
    host: '127.0.0.1',
    port: 9000,
    auth: : {
      username: 'mikeymike',
      password: 'rapunz3l'
    }
  },
 
  // `cancelToken` specifies a cancel token that can be used to cancel the request 
  // (see Cancellation section below for details) 
  cancelToken: new CancelToken(function (cancel) {
  })
}

感受没啥区别 玩不转的能够继续 jquery--$.ajax

 我的感受npm中的教程不错  不过没有配合 vue-cli+webpack使用

我的以为使用vue使用express静态服务器有点low   而后来看看 如何使用json-server http://www.cnblogs.com/web-Rain/p/6520238.html