概述
class InputGroup extends React.Component {
state = {
fileList: [{
name: 'xxx.png',
status: 'done',
}],
};
render() {
const { fileList } = this.state;
const inputPile = [];
//定义一个数组
for (let i = 0; i < fileList.length; i+=1) {
// for循环数组
inputPile.push(
//将组件塞入定义的数组中
<Input placeholder='排序' data-index={i}
/>
//index为自定义属性
);
}
return (
<div>
{inputPile} //引用
</div>
);
}
}
最后
以上就是聪明面包为你收集整理的【React】循环渲染组件的全部内容,希望文章能够帮你解决【React】循环渲染组件所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复