小編給大家分享一下React/Redux應(yīng)用如何使用Async/Await,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)網(wǎng)站建設(shè)提供從項目策劃、軟件開發(fā),軟件安全維護、網(wǎng)站優(yōu)化(SEO)、網(wǎng)站分析、效果評估等整套的建站服務(wù),主營業(yè)務(wù)為做網(wǎng)站、成都網(wǎng)站設(shè)計,重慶APP軟件開發(fā)以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。創(chuàng)新互聯(lián)深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!Async/Await是尚未正式公布的ES7標(biāo)準(zhǔn)新特性。簡而言之,就是讓你以同步方法的思維編寫異步代碼。對于前端,異步任務(wù)代碼的編寫經(jīng)歷了 callback 到現(xiàn)在流行的 Promise ,最終會進化為 Async/Await 。雖然這個特性尚未正式發(fā)布,但是利用babel polyfill我們已經(jīng)可以在應(yīng)用中使用它了。
現(xiàn)在假設(shè)一個簡單的React/Redux應(yīng)用,我將引入 Async/Await 到其代碼。
Actions
此例子中有一個創(chuàng)建新文章的 Action ,傳統(tǒng)方法是利用 Promise 結(jié)合 Redux-thunk 中間件實現(xiàn)。
import axios from 'axios' export default function createPost (params) { const success = (result) => { dispatch({ type: 'CREATE_POST_SUCCESS', payload: result }) return result } const fail = (err) => { dispatch({ type: 'CREATE_POST_FAIL', err }) return err } return dispatch => { return axios.post('http://xxxxx', params) .then(success) .catch(fail) } }
現(xiàn)在將它改寫為 async/await 的實現(xiàn):
import axios from 'axios' export default function createPost (params) { const success = (result) => { dispatch({ type: 'CREATE_POST_SUCCESS', payload: result }) return result } const fail = (err) => { dispatch({ type: 'CREATE_POST_FAIL', err }) return err } return async dispatch => { try { const result = await axios.post('http://xxxxx', params) return success(result) } catch (err) { return fail(err) } } }
async和await是成對使用的,特點是使代碼看起來和同步代碼類似。
Components
同樣,在React組件中,也比較一下 Promise 和 Async/Await 的方法異同。
傳統(tǒng)地使用 Promise :
import React, { Component } from 'react' import { connect } from 'react-redux' import { createPost } from '../actions/post' class PostEditForm extends Component { constructor(props) { super(props) } contributePost = e => { e.preventDefault() // .... get form values as params this.props.createPost(params) .then(response => { // show success message }) .catch(err => { // show error tips }) } render () { return () } } export default connect(null, dispatch => { return { createPost: params => dispatch(createPost(params)) } })(PostEditForm)
如果使用 Async/Await
import React, { Component } from 'react' import { connect } from 'react-redux' import { createPost } from '../actions/post' class PostEditForm extends Component { constructor(props) { super(props) } async contributePost = e => { e.preventDefault() // .... get form values as params try { const result = await this.props.createPost(params) // show success message } catch (err) { // show error tips } } render () { return () } } export default connect(null, dispatch => { return { createPost: params => dispatch(createPost(params)) } })(PostEditForm)
可以見得,兩種模式, Async\Await 的更加直觀和簡潔,是未來的趨勢。但是目前,還需要利用babel的 transform-async-to-module-method 插件來轉(zhuǎn)換其成為瀏覽器支持的語法,雖然沒有性能的提升,但對于代碼編寫體驗要更好。
以上是“React/Redux應(yīng)用如何使用Async/Await”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計公司行業(yè)資訊頻道!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。