這篇文章帶給大家的內容是關於React表單元素的用法介紹(附程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。
今天來講react的表單元素。
受控元素
下面來看如何取得輸入框的值
import React, { Component } from 'react'; class Trem extends React.Component { constructor(props){ super(props); this.inp = this.inp.bind(this); this.sub = this.sub.bind(this); this.state = { place:"请输入...", inputV:'' } }; inp(e){ this.setState({ inputV:e.target.value {/* 通过事件细节改变inputV的值*/} }); console.log(e.target.value) }; sub(){ console.log(this.state.inputV) }; render(){ return ( dc6dce4a544fdca2df29d5ac0ea9906b 62e199ef0ab75a2a7be23da5fa1c717d 076402276aae5dbec7f672f8f4e5cc81 459c89d2db27bf5521f6ebf243005869{this.props.main}65281c5ac262bf6d81768915a4a77ac0{/*此处的main是来自父组件的传值*/} 16b28748ea4df4d9c2150843fecfba68 ) } } export default Trem;
程式碼解讀:
this.inp = this. inp.bind(this); 綁定inp函數this指向
this.state 初始化變數
inp() 監聽input的輸入值
this.state.inputV 透過賦值取得input的value
textarea 標籤
import React, { Component } from 'react'; class Trem extends React.Component { constructor(props){ super(props); this.inp = this.inp.bind(this); this.sub = this.sub.bind(this); this.state = { place:"请输入...", inputV:'' } }; inp(e){ this.setState({ inputV:e.target.value }); console.log(e.target.value) }; sub(){ console.log(this.state.inputV) }; render(){ return ( dc6dce4a544fdca2df29d5ac0ea9906b 579a56a427fedd3f43e55073182d8083 076402276aae5dbec7f672f8f4e5cc81 459c89d2db27bf5521f6ebf243005869{this.props.main}65281c5ac262bf6d81768915a4a77ac0 16b28748ea4df4d9c2150843fecfba68 ) } } export default Trem;
下拉選擇框
import React, { Component } from 'react'; class Trem extends React.Component { constructor(props){ super(props); this.select = this.select.bind(this); this.state = { selectV:'coconut' } }; select(e){ this.setState({ selectV:e.target.value }); console.log(e.target.value) }; render(){ return ( dc6dce4a544fdca2df29d5ac0ea9906b 3b8a70dc2667e2f464d10ebbd01d4c15 5cd170ccbf19f643965dc1b11b38534fGrapefruit4afa15d3069109ac30911f04c56f3338 67b1a94f022b03f32c16ff26047dc8f5Lime4afa15d3069109ac30911f04c56f3338 6c713fef7b2c7826473712e34196e8b6Coconut4afa15d3069109ac30911f04c56f3338 7d46921a401f79981639c6e9dc841feaMango4afa15d3069109ac30911f04c56f3338 18bb6ffaf0152bbe49cd8a3620346341 076402276aae5dbec7f672f8f4e5cc81 16b28748ea4df4d9c2150843fecfba68 ) } } export default Trem;
程式碼解讀:
請注意,Coconut選項最初由於selected屬性是被選中的。在React中,並不使用先前的selected屬性,而在根select標籤上用value屬性來表示選取項目。這在受控組件中更為方便,因為你只需要在一個地方來更新組件。
總之,23efcc05e98690ceeb219581933e4231, 4750256ae76b6b9d804861d8f69e79d3, 和221f08282418e2996498697df914ce4e 都十分類似- 他們都透過傳入一個value屬性來實現對組件的控制。
多個輸入的解決方法
當你有處理多個受控的input元素時,你可以透過為每個元素添加一個name屬性,來讓處理函數根據event.target.name的值來選擇要做什麼。
import React,{Component} from 'react'; class More extends React.Component { constructor(props){ super(props); this.state = { isGoing: true, numberOfGuests: 2 }; this.handleInputChange = this.handleInputChange.bind(this); }; handleInputChange(event) { const target = event.target; const value = target.type === 'checkbox' ? target.checked : target.value; const name = target.name; this.setState({ [name]: value }); console.log(event.target.checked,event.target.value) }; render(){ return ( ff9c23ada1bcecdd1a0fb5d5a0f18437 2e1cf0710519d5598b1f0f14c36ba674 Is going: bb9a5cf863b3be50dad45a483335a732 8c1ecd4bb896b2264e0711597d40766c ff9d32c555bb1d9133a29eb4371c1213 2e1cf0710519d5598b1f0f14c36ba674 Number of guests: 0cc06ec0576f2b965bb67af4c374cf2f 8c1ecd4bb896b2264e0711597d40766c f5a47148e367a6035fd7a2faa965022e ) } } export default More;
程式碼解讀:
this.setState({ });
es6計算屬性名稱語法
原始碼位址:https://github.com/Nick091608...
【相關推薦:react影片教學】
以上是React表單元素的用法介紹(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!