答案 0 :(得分:0)
只需要将对象推送到数组即可。
actions:{
add: function(){
var name = "someword_" + Math.floor(Math.random() * (1000 - 0 + 1)) + 0;
var value = "somevalue_" + Math.floor(Math.random() * (1000 - 0 + 1)) + 0;
this.get('content').pushObject(name, value);
}
}