我有一个演示application,我已设法实现更改所有项目并对所有项目进行排序。现在我想只更新列表数组中位置[1]的一个项目,以便列表更新。我该怎么办?
this.changeOne=function(){
this.allItems[1]={name:"jjjjjjjjjjjjjjjjjjjjjj"};
}
答案 0 :(得分:1)
第一个元素是this.allItems()[0]
。
然后,您只需要更改name
属性。
像这样:
this.changeOne=function(){
this.allItems()[0].name("jjjjjjjjjjjjjjjjjjjjjj");
}
在此功能中,您需要检查是否有元素(我没有检查过!!)。
此链接的更多信息observable arrays