作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个表单结构:
var circle = {
'one': {items: []},
'two': {items: []},
'three': {items: []},
'four': {items: []}
};
每个items
数组应包含 10 个不同的 div,如下所示:
circle.one.items
数组应包含:
<div className="item item-1">1</div>
... <div className="item item-10">10</div>
...
circle.four.items
数组应包含:
<div className="item item-31">31</div>
... <div className="item item-40">40</div>
我正在使用这样的结构:
<div className="circle-one">
{circle.one.items}
</div>
如何填充 items
带有那些 div 的数组?
最佳答案
您可以使用数组并循环数组中的项目。
var circle = { 'one': { items: [] }, 'two': { items: [] }, 'three': { items: [] }, 'four': { items: [] } };
['one', 'two', 'three', 'four'].forEach(function (k, i) {
for (var j = 1; j <= 10; j++) {
circle[k].items.push('<div className="item item-' + (i * 10 + j) + '">' + (i * 10 + j) + '</div>');
}
});
console.log(circle);
关于javascript - JSX 生成 div 并推送到数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38354318/
我是一名优秀的程序员,十分优秀!