英文:
ReactJs - add attribute value for input
问题
我需要根据参数isValue的状态为输入字段添加VALUE属性
{this.state.isValue ?
<input type="text" id="amount" name="amount" value={this.state.amount} />
:
<input type="text" id="amount" name="amount" />
}
如果我使用这段代码 - 在html代码中会有空值(如果isValue = false)
<input type="text" id="amount" name="amount" value={this.state.isValue ? this.state.amount : null} />
有没有更加优雅的方法来实现这个?例如,我尝试这样做,但它不起作用...
<input type="text" id="amount" name="amount" {this.state.isValue ? value=this.state.amount : null} />
英文:
I need add attribute VALUE for input depending on the state of the parameter isValue
{this.state.isValue ?
<input type="text" id="amount" name="amount" value={this.state.amount} />
:
<input type="text" id="amount" name="amount" />
}
If I use this code - I have emtpy value in html code (if isValue = false)
<input type="text" id="amount" name="amount" value={this.state.isValue ? this.state.amount : null} />
Is it possible to do this in a more elegant way? For example, I try like this, but it doesn't work...
<input type="text" id="amount" name="amount" {this.state.isValue ? value=this.state.amount : null} />
答案1
得分: 0
终于我找到了一个解决方案。太糟糕了,没有人能帮助我。
英文:
Finally I found a solution. Too bad no one could help me.
<input type="text" id="amount" name="amount" {...(this.state.isValue ? {value: this.state.amount} : {})} />
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论