6

尝试随机化集合中对象的顺序时遇到问题。

这是我尝试过的代码:

console.log(this.collection);
shuffled = this.collection.shuffle();
console.log(shuffled);

这是控制台输出(使用包含 3 个项目的测试集合):

child {models: Array[3], length: 3, _byId: Object, url: "/myurl/myid", _listenerId: "l7"…}
_byId: Object
_events: Object
_idAttr: "id"
_listenerId: "l7"
length: 3
models: Array[3]
__proto__: Surrogate

[child, child, child]
0: child
1: child
2: child
length: 3
__proto__: Array[0]

如您所见,Collection 没有正确洗牌,而是创建了一个新的不可用对象,其中充满了讨厌的孩子。

我要做的就是随机化模型在集合中出现的顺序,然后再将其传递给视图进行显示(我正在创建一个名为“randomize”的按钮,它需要随机化集合中项目的显示)。我认为这将是一项简单的任务,但此时我正在考虑创建一个全新的模型并在服务器上进行洗牌。

任何帮助是极大的赞赏!

4

1 回答 1

8
console.log(this.collection);
this.collection.reset(this.collection.shuffle(), {silent:true});
console.log(this.collection);
于 2013-05-26T05:43:07.597 回答