我想在选框中一一显示元素数组。 如何在react中的选取框内映射元素数组
答案 0 :(得分:0)
在react中,您可以使用Array.prototype.map方法一一映射元素数组:
render() {
return (
<marquee>
{theArray.map(theElement => theElement.toString())}
</marquee>
);
}
当然您可以将theElement.toString()
更改为您喜欢的任何内容
作为旁注,跑马灯是已弃用/过时的html元素,您应避免使用它 https://developer.mozilla.org/en-US/docs/Web/HTML/Element/marquee