真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何實現(xiàn)vue-router-創(chuàng)新互聯(lián)

這篇文章將為大家詳細講解有關(guān)如何實現(xiàn)vue-router,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

創(chuàng)新互聯(lián)建站自2013年創(chuàng)立以來,先為十堰等服務(wù)建站,十堰等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為十堰企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

開始實現(xiàn)

想象一下,如果自己實現(xiàn)了一個 vue-router,會怎么去使用呢?參考 vue-router 官方的使用方式,看看 html 的使用:


 

  home   book   movie  

 

這里會有 router-link 和 router-view 兩個組件需要我們來實現(xiàn)。再來看 js 的:

const Home = { template: '
home
' }; const Book = { template: '
book
' }; const Movie = { template: '
movie
' }; const routes = [  { path: '/', component: Home },  { path: '/book', component: Book },  { path: '/movie', component: Movie } ]; const router = new VueRouter(Vue, {  routes }); new Vue({  el: '#app' });

這里會有我們自己定義的組件 Home、Book 和 Movie,并且有它們各自對應(yīng)的路由。我們實現(xiàn)的 VueRouter 跟官方的有些區(qū)別,在 VueRouter 被 new 時是將 Vue 作為參數(shù)傳入,而不是注入掛載到根實例下。

接下來就是 VueRouter 的實現(xiàn)了。

VueRouter

要怎么來實現(xiàn) VueRouter 呢,先提供一下實現(xiàn)的思路:

  1. 綁定 hashchange 事件,實現(xiàn)前端路由;

  2. 將傳入的路由和組件做一個路由映射,切換哪個路由即可找到對應(yīng)的組件顯示;

  3. 需要 new 一個 Vue 實例還做響應(yīng)式通信,當路由改變的時候,router-view 會響應(yīng)更新;

  4. 注冊 router-link 和 router-view 組件。

先創(chuàng)建一個 VueRouter:

class VueRouter {
 constructor (Vue, options) {
  this.$options = options;
 }
}

綁定事件

給 VueRouter 添加一個綁定事件的方法,一旦路由發(fā)生改變,會觸發(fā) onHashChange 方法。

constructor (Vue, options) {
 this.init();
}

// 綁定事件
init () {
 window.addEventListener('load', this.onHashChange.bind(this), false);
 window.addEventListener('hashchange', this.onHashChange.bind(this), false);
}

路由映射表

將傳入的 options 設(shè)置成一張路由映射表,以便于通過路由查找到對應(yīng)的組件。

constructor (Vue, options) {
 this.$options = options;
 this.routeMap = {};
 this.createRouteMap(this.$options);
}

// 路由映射表
createRouteMap (options) {
 options.routes.forEach(item => {
  this.routeMap[item.path] = item.component;
 });
}

options 之中,路由與組件的關(guān)系:

const routes = [
 { path: '/', component: Home },
 { path: '/book', component: Book },
 { path: '/movie', component: Movie }
];

生成的路由映射表:

this.routeMap = {
 '/': Home,
 '/book': Book,
 '/movie': Movie
};

響應(yīng)

我們需要 new 一個新的 Vue 實例,將當前路由 current 儲存在其 data 之中,當修改了 current 時,router-view 就會自己去更新視圖。

constructor (Vue, options) {
 this.app = new Vue({
  data: {
   current: '#/'
  }
 });
}

// 獲取當前 hash 串
getHash () {
 return window.location.hash.slice(1) || '/';
}


// 設(shè)置當前路徑
onHashChange () {
 this.app.current = this.getHash();
}

只要在 router-view 里使用到了 this.app.current,一旦更新它,便會更新。

注冊組件

router-link 實際上就是一個 標簽,點擊它便能觸發(fā) hashchange。router-view 會實現(xiàn)一個 render 方法,將當前路由對應(yīng)的組件取出,進行渲染。

constructor (Vue, options) {
 this.initComponent(Vue);
}

// 注冊組件
initComponent (Vue) {
 Vue.component('router-link', {
  props: {
   to: String
  },
  template: ''
 });

 const _this = this;
 Vue.component('router-view', {
  render (h) {
   var component = _this.routeMap[_this.app.current];
   return h(component);
  }
 });
}

完整代碼

至此,一個簡單的 vue-router 就出來了,全部代碼是這樣的:

class VueRouter {
 constructor (Vue, options) {
  this.$options = options;
  this.routeMap = {};
  this.app = new Vue({
   data: {
    current: '#/'
   }
  });

  this.init();
  this.createRouteMap(this.$options);
  this.initComponent(Vue);
 }

 // 綁定事件
 init () {
  window.addEventListener('load', this.onHashChange.bind(this), false);
  window.addEventListener('hashchange', this.onHashChange.bind(this), false);
 }

 // 路由映射表
 createRouteMap (options) {
  options.routes.forEach(item => {
   this.routeMap[item.path] = item.component;
  });
 }

 // 注冊組件
 initComponent (Vue) {
  Vue.component('router-link', {
   props: {
    to: String
   },
   template: ''
  });

  const _this = this;
  Vue.component('router-view', {
   render (h) {
    var component = _this.routeMap[_this.app.current];
    return h(component);
   }
  });
 }

 // 獲取當前 hash 串
 getHash () {
  return window.location.hash.slice(1) || '/';
 }

 // 設(shè)置當前路徑
 onHashChange () {
  this.app.current = this.getHash();
 }
}

最后

將 Vue 與 Hash 路由結(jié)合,監(jiān)聽了 hashchange 事件,再通過 Vue 的 響應(yīng)機制 和 組件,便有了上面實現(xiàn)好了一個 vue-router。

關(guān)于“如何實現(xiàn)vue-router”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


當前標題:如何實現(xiàn)vue-router-創(chuàng)新互聯(lián)
當前URL:http://weahome.cn/article/hjjsp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部