我想呈现<select>
输入的 HTML5 属性,以便我可以使用带有react的 jquery 图像选择器。我的代码是:
var Book = React.createClass({
render: function() {
return (
<option data-img-src="{this.props.imageUrl}" value="1">{this.props.title}</option>
问题是,即使{this.props.imageUrl}
作为 正确传递prop
,它也不会在 HTML 中呈现 - 它只是呈现为{this.props.imageUrl}
. 如何使变量正确传递到 HTML 中?