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

溫馨提示×

溫馨提示×

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

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

React中怎么動態加載路由

發布時間:2021-06-17 15:23:32 來源:億速云 閱讀:850 作者:Leah 欄目:web開發

React中怎么動態加載路由,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

引入必要的依賴

import React from 'react'
import { Router, Route, IndexRoute, hashHistory } from 'react-router'

接下來創建一個component函數

目的就是為了變為router的component實現異步加載。

// 異步按需加載component
function asyncComponent(getComponent) {
  return class AsyncComponent extends React.Component {
   static Component = null;
   state = { Component: AsyncComponent.Component };
 
   componentDidMount() {
    if (!this.state.Component) {
     getComponent().then(({default: Component}) => {
      AsyncComponent.Component = Component
      this.setState({ Component })
     })
    }
   }
   //組件將被卸載 
  componentWillUnmount(){ 
    //重寫組件的setState方法,直接返回空
    this.setState = (state,callback)=>{
      return;
    }; 
  }
   render() {
    const { Component } = this.state
    if (Component) {
     return <Component {...this.props} />
    }
    return null
   }
  }
 }

在此說明componentWillUnmount鉤子是為了解決Can only update a mounted or mounting component的這個問題,原因是當離開頁面以后,組件已經被卸載,執行setState時無法找到渲染組件。

接下來實現本地文件路徑的傳入

 function load(component) {
  return import(`./routes/${component}`)
 }

將已知地址路徑傳遞到一個函數并把這個函數作為參數傳遞到 asyncComponent中這樣asyncComponent就能接收到這個路由的地址了,然后我們要做的就是將這個asyncComponent函數帶入到router中。

<Router history={hashHistory}>
    <Route name="home" breadcrumbName="首頁" path="/" component={MainLayout}>
      <IndexRoute name="undefined" breadcrumbName="未定義" component={() => <div>未定義</div>}/>
      <Route name="Development" breadcrumbName="施工中" path="Development" component={DevelopmentPage}/>
      <Route breadcrumbName="個人助理" path="CustomerWorkTodo" component={({children}) => <div className="box">{children}</div>}>
        <Route name="Agency" breadcrumbName="待辦事項" path="Agency" component={asyncComponent(() => load('GlobalNotification/CustomerWorkAssistantTodo/CustomerAgencyMatter'))}/>
        <Route name="Already" breadcrumbName="已辦事項" path="Already" component={asyncComponent(() => load('GlobalNotification/CustomerWorkAssistantTodo/CustomerAlreadyMatter'))}/>
        <Route name="SystemMessage" breadcrumbName="系統消息" path="SystemMessage/:data" component={asyncComponent(() => load('GlobalNotification/SystemMessage/SystemMessage'))}/>
        <Route name="SystemMessagePer" breadcrumbName="系統消息詳情" path="SystemMessagePer/:data" component={asyncComponent(() => load('GlobalNotification/SystemMessage/SystemMessagePer'))}/>
      </Route>
    </Router>
 </Router>

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

阿尔山市| 黄梅县| 星子县| 鄂伦春自治旗| 宜都市| 尖扎县| 报价| 临夏县| 宣武区| 景洪市| 门头沟区| 宁武县| 荔波县| 齐齐哈尔市| 福州市| 晋城| 北海市| 永清县| 康定县| 昌平区| 嫩江县| 灵山县| 楚雄市| 昌黎县| 长宁区| 滨海县| 衡阳县| 信丰县| 于都县| 富锦市| 承德市| 平谷区| 昌平区| 花莲县| 镇宁| 会理县| 辰溪县| 南靖县| 伊吾县| 略阳县| 团风县|