您好,登錄后才能下訂單哦!
這篇文章主要介紹了react柯里化指的是什么的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇react柯里化指的是什么文章都會有所收獲,下面我們一起來看看吧。
在react中,柯里化是一種關(guān)于函數(shù)的高階技術(shù),指的是通過函數(shù)繼續(xù)返回函數(shù)的方式,實現(xiàn)多次接收參數(shù)最后統(tǒng)一處理的函數(shù)編碼形式;柯里化不會調(diào)用函數(shù),只是對函數(shù)進行轉(zhuǎn)換,通過柯里化在處理表單時,可以輕松的獲取表單控件數(shù)據(jù)。
本教程操作環(huán)境:Windows10系統(tǒng)、react17.0.1版、Dell G3電腦。
函數(shù)的柯里化:
通過函數(shù)調(diào)用繼續(xù)返回函數(shù)的方式,實現(xiàn)多次接受參數(shù)最后統(tǒng)一處理的函數(shù)編碼形式.
擴展:
高階函數(shù): 若一個函數(shù)符合下面兩個規(guī)范中的一個,該函數(shù)就是高階函數(shù)
1.若a函數(shù),接受的參數(shù)是一個函數(shù),那么a就可以稱為高階函數(shù)
2.若a函數(shù),調(diào)用的返回值依舊是一個函數(shù),那么a就可以稱之為高階函數(shù)
3.常見的高階函數(shù)有:promise,setTimeout,arr.map等
示例如下;
在form表單中,使用受控組件綁定狀態(tài)數(shù)據(jù),實現(xiàn)點擊顯示表單數(shù)據(jù):
import React, {Component} from 'react'; export default class Form extends Component{ state = { userName: '', password: '' } submitForm = (event) => { event.preventDefault() //阻止表單提交 const {userName, password } = this.state; alert(`${userName}, ${password}`) } updateUserName = (event) => { this.setState({ userName: event.target.value, }) } updatePassword = (event) => { this.setState({ password: event.target.value, }) } render() { return ( <form onSubmit={this.submitForm}> 用戶名:<input type="text" name="userName" onChange={this.updateUserName}/> 密碼: <input type="password" name="password" onChange={this.updatePassword}/> <button>登錄</button> </form> ) } }
可以看到,這種方法對于表單項多的情況比較繁瑣,可以利用函數(shù)柯里化來優(yōu)化:
import React, {Component} from 'react'; export default class Form extends Component{ state = { userName: '', password: '' } submitForm = (event) => { event.preventDefault() //阻止表單提交 const {userName, password } = this.state; alert(`${userName}, ${password}`) } updateFormData = (key) => { return (event) => { this.setState({ [key]: event.target.value, }) } } render() { return ( <form onSubmit={this.submitForm}> 用戶名:<input type="text" name="userName" onChange={this.updateFormData('userName')}/> 密碼: <input type="password" name="password" onChange={this.updateFormData('password')}/> <button>登錄</button> </form> ) } }
this.updateFormData()的返回值是一個回調(diào)函數(shù),綁定為onChange的事件,參數(shù)為event。這樣就可以在初次調(diào)用時傳類型,觸發(fā)改變事件時傳值了。
不使用函數(shù)柯里化的實現(xiàn)
直接在onChange事件綁定為回調(diào),可以實現(xiàn)同時傳遞類型和值兩個參數(shù)。
import React, {Component} from 'react'; export default class Form extends Component{ state = { userName: '', password: '' } submitForm = (event) => { event.preventDefault() //阻止表單提交 const {userName, password } = this.state; alert(`${userName}, ${password}`) } updateFormData = (key, event) => { this.setState({ [key]: event.target.value, }) } render() { return ( <form onSubmit={this.submitForm}> 用戶名:<input type="text" name="userName" onChange={(event) => this.updateFormData('userName', event)}/> 密碼: <input type="password" name="password" onChange={(event) => this.updateFormData('password', event)}/> <button>登錄</button> </form> ) } }
關(guān)于“react柯里化指的是什么”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“react柯里化指的是什么”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(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)容。