React Native textInput最大长度

时间:2015-04-10 05:00:29

标签: react-native

你如何设置这样的属性?例如,信用卡的CCV字段应具有最大长度3.到期日的最大长度应为月份2和4年。

4 个答案:

答案 0 :(得分:43)

<div class="form-group"> <label for="agencies" class="control-label">Agency</label> <select value.bind="agencyId" class="form-control"> <option value="" **<!-- this value must match the VM initial value -->** selected="true">Select...</option> <option repeat.for="agency of agencies" value.bind="agency.id">${agency.name}</option> </select> </div> 道具现在是React Native的一部分:

maxLength

答案 1 :(得分:0)

  

作为React Native文档, maxLength 道具现在已成为React的一部分   本机:   Documentation

   <TextInput 
   value={this.state.val} 
   maxLength={4} />

答案 2 :(得分:0)

请确保您使用的是带有驼峰盒的 maxLength 而不是 maxlengh

这似乎很明显,但当我头破血流试图弄清楚希望这会有所帮助时,这对我来说并不是

答案 3 :(得分:0)

<TextInput value={this.state.text} maxLength={1000} />

我正在为我设置输入文本长度。