标签: arrays sencha-touch-2 push add dynamically-generated
使用push()方法我在数组中添加了值,但是当我使用push()再次添加时,会在单独的数组中添加值。如何动态地在现有数组中添加值?请提供示例代码段的帮助
答案 0 :(得分:0)
像
var arr = [];
然后使用push()方法在数组中添加值,如
arr.push(Ext.getCmp( 'ID')的getValue());
像这样我们可以动态地在现有数组中添加值。