剛接觸React的時(shí)候,有人感嘆這不就是當(dāng)年的JSP嗎?直接用代碼生成html,兩者混在一起,還真有不少人喜歡把事件響應(yīng)和業(yè)務(wù)邏輯都寫在component里面,看起來就頭疼。當(dāng)年的JSP已經(jīng)被MVC所終結(jié),我們可以借鑒MVC的思想讓React-Redux的代碼好寫又好看。
用戶的請求先由Controller進(jìn)行處理,處理后的數(shù)據(jù)放入Model,View根據(jù)Model的數(shù)據(jù)渲染界面呈現(xiàn)在用戶面前。
1. Model 對應(yīng)Redux store
Redux store由幾個(gè)數(shù)據(jù)模塊組成,每個(gè)模塊中的數(shù)據(jù)在一組頁面或者一個(gè)業(yè)務(wù)流程中使用。
redux/rootReducer.js
import {reducer as common} from './commonAction'
import {reducer as online} from './onlineAction'
export default combineReducers({
common,
online,
})
2. View 對應(yīng)React component
Component將數(shù)據(jù)呈現(xiàn)出來,要盡可能地只做頁面顯示,其它代碼一概抽離,例如:
login/index.js
import {actions} from './action';
class Login extends Component {
componentWillMount() {
this.props.clearSession();
}
render() {
const p = this.props;
return (
<div className="form">
<div className="input-group">
<label>User Name</label>
<input type="text" value={p.s.username} onChange={e=>p.updateFormValue({username: e.target.value})} >
</div>
<div className="input-group">
<label>Password</label>
<input type="password" value={p.s.password} onChange={e=>p.updateFormValue({password: e.target.value})} >
</div>
<div className="input-group">
<button type="button" className="btn btn-block" disabled={!p.s.loginReady} onClick={p.submitLogin} >Login</button>
</div>
</div>
)
}
}
export default connect(
store => ({ s: store.online }),
{ ...actions }
)(Login);
3. Controller 對應(yīng)action,reducer
store中的每個(gè)模塊都有自己的reducer負(fù)責(zé)更新數(shù)據(jù)
redux/onlineAction.js
const types = {
UPDATE_VALUE: 'ONLINE/UPDATE_VALUE',
}
export const actions = {
updateValue: values => (dispatch, getStore) => {
dispatch({type: types.UPDATE_VALUE, ...values});
},
}
const initStore = {
username: '',
password: '',
}
export const reducer = (store={...initStore}, action) => {
switch (action.type) {
case types.UPDATE_VALUE:
return {...store, ...action};
default:
return {...store};
}
}
把負(fù)責(zé)更新數(shù)據(jù)的action type,action,reducer合并成一個(gè)文件。有些教程說,每個(gè)變量都要一個(gè)特定的action type,action creator和reducer中的case。在我看來是沒有意義的,一個(gè)數(shù)據(jù)更新action就夠模塊里面所有變量使用了,而且可以一次更新多個(gè)變量,在接收后臺(tái)數(shù)據(jù)時(shí)提高效率。
每個(gè)頁面都有在自己的action,處理自己的事件響應(yīng)和業(yè)務(wù)邏輯。當(dāng)需要時(shí)就調(diào)用模塊級(jí)別的action來更新數(shù)據(jù)。
login/action.js
import {actions as onlineActions} from '../redux/onlineAction';
export const actions = {
updateFormValue: value => (dispatch, getStore) => {
dispatch(onlineActions.updateValue(value));
dispatch(actions.verifyValue());
},
verifyValue: () => (dispatch, getStore) => {
const {username, password} = getStore().online;
let loginReady = username.length >= 6;
loginReady = loginReady && password.length >= 6;
dispatch(onlineActions.updateValue(loginReady));
},
submitLogin: () => (dispatch, getStore) => {
const {username, password} = getStore().online;
// submit data to server ...
}
}
這里討論了一種React-Redux項(xiàng)目的參考編碼風(fēng)格,讓代碼看起來有MVC感覺,好寫好看。
另外,thunk只是入門級(jí)的中間件,對自己有要求的同學(xué)應(yīng)該去學(xué)習(xí)一下saga。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
分享名稱:React-Redux與MVC風(fēng)格-創(chuàng)新互聯(lián)
網(wǎng)址分享:http://www.rwnh.cn/article32/dpeisc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、網(wǎng)站營銷、標(biāo)簽優(yōu)化、品牌網(wǎng)站建設(shè)、服務(wù)器托管、域名注冊
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容