Backbone.js 集合是否已排序?
它像“列表”一样,顺序很重要吗?
或者根本就没有排序?
Is it like a "list", where order matters?
Or is it not sorted at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
它像“列表”一样,顺序很重要吗?
或者根本就没有排序?
Is it like a "list", where order matters?
Or is it not sorted at all?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
默认情况下,不,它们没有排序。但如果您提供比较器功能,它们将会被排序: http://documentcloud.github.com/主干/#Collection-comparator
By default, no they're not sorted. But they will be sorted if you provide a comparator function: http://documentcloud.github.com/backbone/#Collection-comparator
默认情况下,它是“有序的”(插入顺序),但不是“排序的”。
By default it is "ordered" (insertion order) but not "sorted".