您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)React-Router怎樣進行頁面權(quán)限管理,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
前言
在一個復(fù)雜的SAP應(yīng)用中,我們可能需要根據(jù)用戶的角色控制用戶進行頁面的權(quán)限,甚至在用戶進入系統(tǒng)之前就進行權(quán)限的控制。本文就此一權(quán)限控制進行討論。本文假設(shè)讀者了解React和React-Router的相關(guān)使用。
從傳統(tǒng)的Router開始
一個傳統(tǒng)的路由大概長下邊這個樣式,這是沒有添加任何權(quán)限限制的。
export default (store) => { const history = syncHistoryWithStore(hashHistory, store); return ( <Router history={history}> <Route path="/" component={AppRoot} > <IndexRoute component={IndexPage} /> <Route path="photo" component={PhotoPage} /> <Route path="info" component={InfoPage} /> </Route> {/* <Redirect path="*" to="/error" /> */} </Router> ) }
這里一共有3個頁面 IndexPage, PhotoPage,InfoPage。
添加第一個權(quán)限
假設(shè)我們需要在用戶進入PhotoPage之前需要驗證用戶是否有權(quán)限,根據(jù)store的的一個狀態(tài)去判斷。
先添加如下一個函數(shù)
const authRequired = (nextState, replace) => { // Now you can access the store object here. const state = store.getState(); if (state.admin != 1) { replace('/'); } };
函數(shù)里我們判斷了state的admin是否等于1,否則跳轉(zhuǎn)到首頁。
然后在Route添加 onEnter={authRequired} 屬性
<Route path="photo" component={PhotoPage} onEnter={authRequired} />
通過以上,就完成了第一個權(quán)限的添加
進入系統(tǒng)之前就進行權(quán)限控制
如果需要在進入系統(tǒng)之前就進行權(quán)限控制,那么就需要改變一下策略。
比如上邊的例子,加入state的admin并未加載,那么就需要在上一層的route進行數(shù)據(jù)加載
首先添加一個加載數(shù)據(jù)的函數(shù)
function loadData(nextState, replace, callback) { let unsubscribe; function onStateChanged() { const state = store.getState(); if (state.admin) { unsubscribe(); callback(); } } unsubscribe = store.subscribe(onStateChanged); store.dispatch(actions.queryAdmin()); }
接著再修改一下Router
<Router history={history}> <Route path="/" component={AppRoot} onEnter={loadData}> <IndexRoute component={IndexPage} /> <Route path="photo" component={PhotoPage} onEnter={authRequired} /> <Route path="info" component={InfoPage} /> </Route> </Router>
這樣在進入下邊之前,就會先進行數(shù)據(jù)加載。
通過以上簡單幾步,一個完整的權(quán)限控制鏈就完成了.
關(guān)于“React-Router怎樣進行頁面權(quán)限管理”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。