vue.js搭建使用者管理系統練手(三)----http請求列表資料
上一節我們在vue.js引入bootstrap的基本框架,這節我們順便顯示列表資料:
改造Customer.vue:
<template>
<div class="customers container">
<h1 class="page-header">使用者管理系統</h1>
<table class="table table-striped">
<thead>
<tr>
<th>姓名</th>
<th>電話</th>
<th>郵箱</th>
<th></th>
</tr>
</thead>
<tbody>
<tr v-for="customer in customers">
<td>{{customer.name}}</td>
<td>{{customer.phone}}</td>
<td>{{customer.email}}</td>
<td></td>
</tr>
</tbody>
</table>
</div>
</template>
<script>
export default {
name: 'customers',
data () {
return {
customers:[]
}
},
methods:{
fetchCustomers(){
this.$http.get("http://localhost:3000/users")
.then(function(response){
//console.log(response);
this.customers = response.body;
})
}
},
created(){
this.fetchCustomers();
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>
- 在例項被建立的時候就呼叫fetchCustomers方法獲取資料放入到customers 中
- 引入bootstrap的container樣式,通過v-for指令將獲取到的json陣列資料迴圈顯示
ps;如果沒有註冊 vue-resource ,需要通過npm install vue-resource –save命令來註冊該外掛,該外掛用於http請求獲取資料!
相關文章
- vue.js搭建使用者管理系統練手(四)----http請求新增列表資料Vue.jsHTTP
- vue.js搭建使用者管理系統練手(二)----頁面框架搭建Vue.js框架
- vue.js搭建使用者管理系統練手(六)----使用者詳情Vue.js
- vue.js搭建使用者管理系統練手(五)----嵌入彈窗元件Vue.js元件
- vue.js搭建使用者管理系統練手(一)----配置json-serverVue.jsJSONServer
- vue.js搭建使用者管理系統練手(八)----實現搜尋功能Vue.js
- vue.js搭建使用者管理系統練手(七)----使用者詳情的修改和刪除Vue.js
- Http請求資料格式HTTP
- http 請求 formData 型別資料HTTPORM型別
- react 高效高質量搭建後臺系統 系列 —— 請求資料React
- flutter實戰3:解析HTTP請求資料和製作新聞分類列表FlutterHTTP
- YApi 新版如何檢視 http 請求資料APIHTTP
- 使用Python獲取HTTP請求頭資料PythonHTTP
- [前端 · 面試 ]HTTP 總結(三)—— HTTP 請求方法前端面試HTTP
- HTTP協議的請求與資料抓包HTTP協議
- http請求概述HTTP
- Jsoup http請求JSHTTP
- go http請求GoHTTP
- 合併HTTP請求vs並行HTTP請求,到底誰更快?HTTP並行
- 合併HTTP請求 vs 並行HTTP請求,到底誰更快?HTTP並行
- MVVM框架的搭建(三)——網路請求MVVM框架
- HTTP請求報文HTTP
- Cookie 與 HTTP請求CookieHTTP
- python做http請求PythonHTTP
- 如何使用Vue.js來搭建一個後臺管理系統Vue.js
- unity3d c# http 請求json資料解析Unity3DC#HTTPJSON
- Vue.js請求JSON Server伺服器資料的實現方法Vue.jsJSONServer伺服器
- 可擴充套件的資料庫系統,請求批評套件資料庫
- Python實現http介面請求資料後,往RabbitMQ裡面插入資料PythonHTTPMQ
- 前端請求後端資料的三種方式!前端後端
- 爬蟲實戰:從HTTP請求獲取資料解析社群爬蟲HTTP
- Flask——請求資料Flask
- Jmeter —— jmeter設定HTTP資訊頭管理器模擬請求頭JMeterHTTP
- HTTP 請求與響應HTTP
- Http請求與響應HTTP
- Http請求相關(轉)HTTP
- go搞笑http請求庫GoHTTP
- HTTP網路請求原理HTTP