最佳答案
我有带有 label
的表单元素,我希望有唯一的 ID 来将 label
链接到带有 htmlFor
属性的元素。就像这样:
React.createClass({
render() {
const id = ???;
return (
<label htmlFor={id}>My label</label>
<input id={id} type="text"/>
);
}
});
我过去常常基于 this._rootNodeID
生成 ID,但是自从 React 0.13之后就不可用了。现在最好和/或最简单的方法是什么?