我在使用输入类型=“密码”时使用表单,它没有将输入字段显示为可编辑。我没有使用redux表单。在React如何将输入字段作为密码?
<input className="search-placeholder" type="password"
value={this.state.password} onChange={this._changePassword} />
答案 0 :(得分:4)
如果没有一些代码,不确定您遇到了什么问题,但不需要特殊技术。输入将使用以下方式呈现:
// For a controlled input
<input type="password" value={value} onChange={this.handleChange} />
// For an uncontrolled input
<input type="password" ref={ref => this.ref = ref} />
我做了一个简单的例子here