提交后清除reactJs textarea
Posted
技术标签:
【中文标题】提交后清除reactJs textarea【英文标题】:Clear reactJs textarea after submit 【发布时间】:2015-09-12 03:18:40 【问题描述】:我在天窗对话框中有以下表单组件,提交后,如果重新打开包含表单的对话框,它包含之前提交的值。谁能告诉我如何在每次打开对话框时停止此操作并清除 textarea 值?
这是我的组件:
var AddNoteForm = React.createClass(
componentDidMount: function()
React.findDOMNode(this.refs.notes).value = "";
,
handleSubmit: function (event)
event.preventDefault();
var notes = React.findDOMNode(this.refs.notes).value;
var details =
studentId: this.props.studentId,
schoolId: this.props.schoolId,
notes: notes
;
this.props.onSubmit(details);
,
render: function()
return (
<form className="pure-form pure-form-aligned"
onSubmit=this.handleSubmit>
<div className="pure-control-group">
<label htmlFor="notes">Note</label>
<textarea ref="notes" id="notes" placeholder="Note..." >
</textarea>
</div>
<div className="pure-controls">
<input type="submit" value="Save" />
</div>
</form>
);
);
module.exports = AddNoteForm;
【问题讨论】:
【参考方案1】:基本上你的表单没有被卸载。所以在 componentDidMount 中写代码是没有意义的。因此,解决问题的快速方法是在读取处理提交方法中的值后清除 textarea 框
handleSubmit: function (event)
event.preventDefault();
var notes = this.refs.notes;
var details =
studentId: this.props.studentId,
schoolId: this.props.schoolId,
notes: notes.value
;
notes.value = ""; // Unset the value
this.props.onSubmit(details);
,
【讨论】:
感谢您的回复。我已经尝试过了,但是对话框中的值仍然存在,有什么想法吗?【参考方案2】:所以如果有人陷入这个问题, 我使用的是不受控制的组件,清除它有点复杂, 我只是换了一个受控的然后得到它:)
<form onSubmit=e => this.handleSubmit(e)>
<textarea value=this.state.text onChange= e => this.handleChange(e) />
<button>Submit Comment</button>
</form>
防止默认很重要
handleSubmit = event =>
event.preventDefault();
this.setState( text: '' );
;
【讨论】:
以上是关于提交后清除reactJs textarea的主要内容,如果未能解决你的问题,请参考以下文章
用ant-design在react js中提交后清除表单输入字段值