iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 23
0
自我挑戰組

請你當我的好朋友吧!ReactJS!系列 第 23

【DAY 23】react-router三劍客,Router、Route、Link(上)

  • 分享至 

  • xImage
  •  

【前言】
  不怕我誤人子弟嗎QQ
【正文】
  昨天我們簡單的利用react-router模擬一個SPA的網頁,今天我們就來說說Router、Route、Link到底有什麼常用屬性吧!Let's go.

Router:包在最外層的路由組件,內部只能有一個child

  1. <BrowserRouter>:利用HTML5 History API幫忙我們與網頁的URL同步
  • basename:string,通常是指整個location的base,通常要求要有leading slash但不要有trailing slash
  • forceRefresh:boolean,設為true的話就會整個網頁更新,通常用於網頁不支援HTML5 History API。
  • keyLength:number,location的長度
  • children:只能有單一child在Router中
  1. <HashRouter>:利用Hash功能來幫助我們與網頁的URL同步
     * basename:同<BrowserRouter>的basename
     * hashType:可以接受下列的hash型態,
"slash" - 接受 #/ 與 #/sunshine/lollipops
"noslash" - 接受 # 與 #sunshine/lollipops
"hashbang" - 接受 “ajax crawlable” (deprecated by Google) hashes #!/ and #!/sunshine/lollipops

 * children:只能有單一child在Router中

  1. <MemoryRouter>:將我們的URL History狀態存到記憶體中,通常用來測試用或是給React-Native用
     * initialEntries:array,可以是一個locaation object或是單純的URLs字串
     * initialIndex:number,初始的index enrty
     * keyLength:number,location的長度
     * children:只能有單一child在Router中

  2. <StaticRouter>:不改變Location的Router,通常用於伺服器render用(server-side rendering)
     * basename:string,通常是指整個location的base,通常要求要有leading slash但不要有trailing slash
     * location:string,可以放server received的url,像是在node server的req.url
     * location:object,可以放object型態的url( { pathname, search, hash, state })
     * context:object,是javascript物件
     * children:只能有單一child在Router中


上一篇
【DAY 22】react-router,實現單頁式網站的秘密
下一篇
【DAY 24】react-router三劍客,Router、Route、Link(中)
系列文
請你當我的好朋友吧!ReactJS!30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言