我有一个这样创建的数组:
var thecharts = new Array(chartg, chartb);
在我看来,我有一个轮播,轮播的项目将由数组确定thecharts
代码如下所示:
items: [
{
xtype: 'carousel',
width: '90%',
height: '70%',
defaults: {
styleHtmlContent:true,
id: 'carousel'
},
items: [
thecharts[0],
thecharts[1]
]
},
像这样工作得很好。但是,数组的大小可能会根据其他条件而改变。因此,我宁愿不使用索引,而是将整个数组放入items
并让它看起来像这样:
items: [ thecharts ]
我尝试过这种方式,但它只返回了数组中的第一个元素。如何让它返回数组中的所有元素?