我有一个像这样创建的数组:
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 ]
我试过这种方式,但它刚刚返回数组中的第一个元素。如何让它返回数组中的所有元素?
答案 0 :(得分:1)
这个怎么样?
items: thecharts