vue.js請求資料的方法:先安裝【vue-resource】模組;然後在【main.js】引入【vue-resource】,並在元件裡面直接使用。
【相關文章推薦:vue.js】
vue.js請求數據的方法:
一,vue-resource請求資料
#介紹:vue-resource請求資料方式是官方提供的一個外掛程式
使用步驟:
1、安裝vue-resource模組
cnpm install vue-resource --save
加--save是為了在package.json中引用,表示在生產環境中使用。因為我們在日常開發中,如果我們要打包程式碼給其他人或上傳到github,又或者要發佈程式碼時,package.json就是安裝所需的套件。如果只在開發環境中使用,則只需要--save-dev,有些只在開發環境中使用,有些要在生產環境中使用。
2、在main.js 引入vue-resource
import VueResource from 'vue-resource'; Vue.use(VueResource);
3、在元件裡面直接使用
this.$http.get(地址).then(function(){ })
注意:this.$http.get()
等等的各種http請求都是繼承promise的。 promise是異步的請求;其次,.then
箭頭函數裡的this代表的是上下文。根據箭頭函數this的定義,只在函數定義時就已經賦值可知,this,指代的是定義函數的對象,在vue中對象就是methods當前頁面。所以this指導的是data裡面的數據。如果想要取得包裹函數外函數的數據,即閉包的概念。實現方法就是在外層函數加一個var that = this;
將外層的this先儲存到that中。
實例:
Info.vue
<template> <div id="info"> <button @click="getData">获取数据</button> <ul> <li v-for="(item,index) in list" v-bind:key="index"> {{item.title}} </li> </ul> </div> </template> <script> export default { name: "Info", data() { return { list: [] } }, methods: { getData: function () { let api = 'http://www.phonegap100.com/appapi.php?a=getPortalList&catid=20&page=1'; //此处推荐使用箭头函数。 this.$http.get(api).then((res)=>{ this.list = res.body.result; }, (err)=>{ console.log(err); }); } }, mounted() { this.getData(); } } </script>
如果getData()中不適用箭頭函數,就需要注意this問題。
getData: function () { let api = 'http://www.phonegap100.com/appapi.php?a=getPortalList&catid=20&page=1'; const _this = this; this.$http.get(api).then(function (res) { _this.list = res.body.result; }, function (err) { console.log(err); }); }
二,axios請求資料
介紹:這是一個第三方的外掛程式github位址:https://github.com/axios/axios
#axios 與fetch-jsonp 同為第三方外掛程式
1、安裝
cnpm install axios --save
直接呼叫。和vue-resource的差別是:aixos是每在一個頁面用一次就要在該頁面呼叫一次。 vue-resource是綁定了全域的了。
2、哪裡用哪裡引入axios
Axios.get(api).then((response)=>{ this.list=response.data.result; }).catch((error)=>{ console.log(error); })
關於axios的跨域請求
在config->index.js->proxyTable配置如下:target填寫自己想要的位址
如下配置,url為位址後面所帶的參數,配置好後,現在npm run dev 運行就行。
關於多個並發請求:
#上面這個是同一位址的跨域,如果要拿不同位址的跨域,只需要更改config->index.js->proxyTable的配置,增加位址區塊就行。
三,關於fetch-jsonp
github位址:https://github.com/camsong/fetch-jsonp
1、安裝
cnpm install fetch-jsonp --save
2、哪裡用哪裡引入fetch-jsonp
fetchJsonp('/users.jsonp') .then(function(response) { return response.json() }).then(function(json) { console.log('parsed json', json) }).catch(function(ex) { console.log('parsing failed', ex) })
#相關免費學習推薦:JavaScript#(影片)
以上是vue.js怎麼請求數據的詳細內容。更多資訊請關注PHP中文網其他相關文章!