I'd like to render an HTML5 attribute of a <select>
input so that I can use jquery image picker with react. My code is:
var Book = React.createClass({
render: function() {
return (
<option data-img-src="{this.props.imageUrl}" value="1">{this.props.title}</option>
The issue is that even though {this.props.imageUrl}
is getting properly passed as a prop
, it isn't rendering in the HTML - it just renders as {this.props.imageUrl}
. How can I make the variable pass through properly into the HTML?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…