91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue-Router基礎學習筆記(小結)

發布時間:2020-09-24 09:22:15 來源:腳本之家 閱讀:176 作者:蔡萬勝 欄目:web開發

vue-router是一個插件包,要先用npm進行安裝

1、安裝vue-router

npm install vue-router
yarn add vue-router

2、引入注冊vue-router

import Vue from 'vue'
import VueRouter from 'vue-router'

Vue.use(VueRouter)

3、鏈接跳轉

<router-link to='/home'></router-link>  //你可以在template中使用它實現一個可點擊跳轉到home.vue的 a 標簽
this.$router.push('/about');  //在methods方法中跳轉到about頁面
this.$router.go('-1');  //在js中返回上一個頁面

4、經常用到

this.$route.params.name  //在js中獲取路由的參數
.router-link-active  //當前選中路由的匹配樣式
$route.query  //獲取查詢參數
$route.hash  //哈希

5、路由配置

export default new Router({
  routes:[
    {        //第一層是頂層路由,頂層路由中的router-view中顯示被router-link選中的子路由
      path:'/',
      name:'Home',
      component:'Home'
    },{
      path:'/user/:id',  //www.xxx.com/user/cai
      name:'user',  //:id是動態路徑參數
      component:'user',
      children:[
        {
          path:'userInfo',  //www.xxx.com/user/cai/userInfo
          component:'userInfo'  //子路由將渲染到父組件的router-view中
        },{
          path:'posts',
          component:'posts'
        }
      ]
    }
  ]
})
Vue.use(Router);

6、路由參數方式變化時,重新發出請求并更新數據

//比如:用戶一切換到用戶二, 路由參數改變了,但組件是同一個,會被復用
// 從 /user/cai 切到 /user/wan

在User組件中:

//方法1:
  watch:{
    '$route'(to,from){
      //做點什么,比如:更新數據
    }
  }
//方法二:
  beforeRouteUpdate(to,from,next){
    //同上
  }

7、編程式導航

router.push({name:'user',params:{userId:'123'}})  //命名路由導航到user組件
<router-link :to='{name:'user',params:{userId:'123'}}'>用戶</router-link>

router.push({path:'register',query:{plan:'cai'}})  //query查詢參數
router.push({path:`/user/${userId}`})  //query

router.push(location,onComplete,onAbort)
router.replace()  //替換
router.go(-1)

8、命名視圖

//當前組件中只有一個 router-view 時,子組件默認渲染到這里

<router-view class='default'></router-view>
<router-view class='a' name='left'></router-view>
<router-view class='b' name='main'></router-view>

routes:[
  {
    path:'/',
    components:{
      default:header,
      left:nav,
      main:content  //content組件會渲染在name為main的router-view中
    }
  }
]
//嵌套命名視圖就是:子路由+命名視圖

9、重定向與別名

const router = new VueRouter({
  routes: [
    { path: '/a', redirect: '/b' },
    { path: '/b', redirect: { name: 'foo' }},  //命名路由方式
    { path: '/c', redirect: to => {  //動態返回重定向目標
     // 方法接收 目標路由 作為參數
     // return 重定向的 字符串路徑/路徑對象
    }}
  ]
})

const router = new VueRouter({
  routes: [
    { path: '/a', component: A, alias: '/b' }  //別名:當訪問 /b 時也會使用A組件
  ]
})

10、路由組件傳參

const User={
  props:['id'],
  template:`<div>{{id}}</div>`
}
const router = new VueRouter({
  routes: [
    { path: '/user/:id', component: User, props: true },
  
    // 對于包含命名視圖的路由,你必須分別為每個命名視圖添加 `props` 選項:
    {
      path: '/user/:id',
      components: { default: User, sidebar: Sidebar },
      props: { default: true, sidebar: false }
    }
  ]
})

11、HTML5的History模式下服務端配置

const router = new VueRouter({
  mode: 'history',
  routes: [
    { path: '*', component: 404}
  ]
})

后端配置:

//Nginx
  location / {
   try_files $uri $uri/ /index.html;
  }
  
//Apache
  <IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteBase /
   RewriteRule ^index\.html$ - [L]
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule . /index.html [L]
  </IfModule>
//Node.js
  const http = require('http')
  const fs = require('fs')
  const httpPort = 80
  http.createServer((req, res) => {
   fs.readFile('index.htm', 'utf-8', (err, content) => {
    if (err) {
     console.log('無法打開index.htm頁面.')
    }
    res.writeHead(200, {
     'Content-Type': 'text/html; charset=utf-8'
    })
    res.end(content)
   })
  }).listen(httpPort, () => {
   console.log('打開: http://localhost:%s', httpPort)
  })
  
//使用了Node.js的Express
  [使用中間件][1]

解耦合

 routes: [
  { path: '/user/:id', component: User, props: true },
 
 
  // 對于包含命名視圖的路由,你必須分別為每個命名視圖添加 `props` 選項:
  {
   path: '/user/:id',
   components: { default: User, sidebar: Sidebar },
   props: { default: true, sidebar: false }
  }
 
 ]

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瓦房店市| 瑞昌市| 黎城县| 合水县| 油尖旺区| 尼勒克县| 昌吉市| 阆中市| 麻城市| 武平县| 伊宁市| 荆州市| 本溪| 巴彦县| 临沧市| 上栗县| 金阳县| 嘉兴市| 都江堰市| 若羌县| 灵台县| 运城市| 龙江县| 海宁市| 长海县| 上蔡县| 韶山市| 蕉岭县| 商水县| 临安市| 青神县| 肇源县| 阜康市| 祁门县| 台南县| 年辖:市辖区| 平顺县| 阿克苏市| 大竹县| 娱乐| 依兰县|