愛編程愛分享,原創文章,轉載請註明出處,謝謝!http://www.cnblogs.com/fozero/p/6185492.htmlhtml
1、介紹前端
2、環境搭建vue
咱們使用vue-cli腳手架工具構建react
#安裝 vue-cliwebpack
npm install -g vue-cligit
#使用vue-cli初始化項目es6
vue init webpack vue-vuerouter-demogithub
#進到目錄web
cd vue-vuerouter-demovue-router
#安裝依賴
npm install
#開始運行
npm run dev
瀏覽器訪問http://localhost:8080
構建完成以後基本目錄結構以下:
流程說明:
一、首先會打開首頁 也就是咱們看到的index.html文件
二、使用webpack打包以後默認加載main.js文件並將其引入到index.html文件中
3、開發
咱們在main.js文件中引入相關模塊以及組件
import Vue from 'vue' import App from './App' import router from './router' //這裏引入的是router目錄,會默認識別裏面的index.js文件(不能是其餘名字) // 引入並使用vue-resource網絡請求模塊 import VueResource from 'vue-resource' Vue.use(VueResource)
實例化vue對象配置選項路由及渲染App組件
new Vue({ el: '#app', //這裏綁定的是index.html中的id爲app的div元素 router, render: h => h(App) // 這裏的render: h => h(App)是es6的寫法 // 轉換過來就是: 暫且可理解爲是渲染App組件 // render:(function(h){ // return h(App); // }); })
App.vue文件是咱們的組件入口,以後全部的開發在這裏面進行
<template> <div id="app"> <!-- <hello></hello> --> <div class="nav"> <!-- 使用 router-link 組件來導航. --> <!-- 經過傳入 `to` 屬性指定連接. --> <!-- <router-link> 默認會被渲染成一個 `<a>` 標籤 --> <ul> <li><router-link to="/home">Home</router-link></li> <li><router-link to="/about">About</router-link></li> </ul> </div> <div class="main">
<!-- 路由匹配到的組件將渲染在這裏 -->
<router-view></router-view> </div> </div> </template> <script> // import Hello from './components/Hello' export default { name: 'app', components: { // Hello } } </script> <style> body{ background-color: #f8f8ff; font-family: 'Avenir', Helvetica, Arial, sans-serif; color: #2c3e50; } .nav{ position: fixed; width: 108px; left: 40px; } .nav ul{ list-style: none; margin: 0; padding: 0; } .nav ul li{ width: 108px; height: 48px; line-height: 48px; border:1px solid #dadada; text-align: center; } .nav ul li a{ text-decoration: none; } .main{ height: 400px; margin-left: 180px; margin-right: 25px; } </style>
要使用路由咱們首先要在router/index.js文件中建立路由並配置路由映射 ,並經過export輸出router到main.js文件中
// 這裏面負責寫路由映射,便於管理 // 引入路由模塊並使用它 import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRouter) // 建立路由實例並配置路由映射 // path:'*',redirect:'/home' 重定向到path是/home的映射 const router = new VueRouter({ routes:[{ path: '/home', component: require('../components/Home.vue') },{ path: '/about', component: require('../components/About.vue') },{ path:'*',redirect:'/home' }] }) // 輸出router export default router;
上面配置了2個組件映射 分別Hme.vue組件和About組件,配置好以後咱們就能夠開始使用路由了
<!-- 使用 router-link 組件來導航. --> <!-- 經過傳入 `to` 屬性指定連接. --> <!-- <router-link> 默認會被渲染成一個 `<a>` 標籤 --> <ul> <li><router-link to="/home">Home</router-link></li> <li><router-link to="/about">About</router-link></li> </ul>
<!-- 路由匹配到的組件將渲染在這裏 --> <router-view></router-view>
點擊home和about導航會映射到對應的組件,而後將組件渲染在</router-view>這裏面
到此,整個流程咱們已經走通了。
接下來咱們使用vue-resource網絡插件動態加載數據並顯示出來
一、先在main.js文件中引入並使用vue-resource網絡請求模塊
import VueResource from 'vue-resource'
Vue.use(VueResource)
二、建立Home.vue組件
咱們須要在created鉤子函數中去請求網絡,這裏咱們使用豆瓣的API去請求電影列表數據,請求成功以後咱們將其數據顯示到頁面中
<template> <div class="home"> <h1>{{ msg }}</h1> <ul> <li v-for="article in articles"> <div class="m-img inl-block"><img v-bind:src="article.images.small"/></div> <div class="m-content inl-block"> <div>{{article.title}}</div> <div>年份:{{article.year}}</div> <div>類型:{{article.subtype}}</div> </div> </li> </ul> </div> </template> <script> // mounted 鉤子函數 這裏去請求豆瓣數據 export default { name: 'home', data () { return { msg: '電影列表', articles:[] } }, created:function(){ //這裏mounted和created生命週期函數區別 this.$http.jsonp('https://api.douban.com/v2/movie/top250?count=10', {}, { headers: { }, emulateJSON: true }).then(function(response) { // 這裏是處理正確的回調 console.log(response); this.articles = response.data.subjects // this.articles = response.data["subjects"] 也能夠 }, function(response) { // 這裏是處理錯誤的回調 console.log(response) }); } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> ul{ list-style: none; margin: 0; padding: 0; } ul li{ border-bottom: 1px solid #999; padding: 10px 0; } .inl-block{ display: inline-block; } .m-img{ } .m-content{ margin-left: 20px; } </style>
三、最後咱們運行npm run dev命令查看頁面顯示效果
OK,能夠看到咱們的數據成功加載出來了,能夠點擊左側的導航來進行導航內容切換
代碼我已經上傳到github上面去了,想看的童鞋去上面看,喜歡的話能夠給個Star哦~
Github地址 https://github.com/fozero/vue-vuerouter-demo