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搭建使用者管理系統練手(八)----實現搜尋功能Vue.js
- vue.js搭建使用者管理系統練手(一)----配置json-serverVue.jsJSONServer
- vue.js搭建使用者管理系統練手(七)----使用者詳情的修改和刪除Vue.js
- Http請求資料格式HTTP
- http 請求 formData 型別資料HTTPORM型別
- react 高效高質量搭建後臺系統 系列 —— 請求資料React
- [前端 · 面試 ]HTTP 總結(三)—— HTTP 請求方法前端面試HTTP
- flutter實戰3:解析HTTP請求資料和製作新聞分類列表FlutterHTTP
- YApi 新版如何檢視 http 請求資料APIHTTP
- http請求HTTP
- HTTP 請求HTTP
- HTTP協議的請求與資料抓包HTTP協議
- java發http,https請求獲取資料JavaHTTP
- 使用Python獲取HTTP請求頭資料PythonHTTP
- http請求概述HTTP
- HTTP請求方法HTTP
- http請求頭HTTP
- go http請求GoHTTP
- MVVM框架的搭建(三)——網路請求MVVM框架
- 基於 Laravel 搭建使用者邀請系統Laravel
- 合併HTTP請求vs並行HTTP請求,到底誰更快?HTTP並行
- 合併HTTP請求 vs 並行HTTP請求,到底誰更快?HTTP並行
- 如何使用Vue.js來搭建一個後臺管理系統Vue.js
- Cookie 與 HTTP請求CookieHTTP
- Jsoup http請求JSHTTP
- Android Http請求AndroidHTTP
- HTTP請求報文HTTP
- Vue內容管理系統的搭建(三)Vue
- 可擴充套件的資料庫系統,請求批評套件資料庫
- 前端請求後端資料的三種方式!前端後端
- Flask——請求資料Flask
- 搭建本地server,響應Android客戶端HTTP請求ServerAndroid客戶端HTTP
- 【轉】怎麼用PHP傳送HTTP請求(POST請求、GET請求)?PHPHTTP
- unity3d c# http 請求json資料解析Unity3DC#HTTPJSON