Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一组对象,用户可以任意排序。我想让我的客户记住对象集的排序,以便当用户再次访问该页面时,他/她选择的排序将被保留。但是,客户端框架还应该能够根据排序从它们存储的任何数组/哈希图中快速查找对象。这样做最有效的方法是什么?
我发现这样做的最佳方法是使用一个数组,该数组以我想要的特定顺序存储数组的 ID。从那里,我可以通过使用 Underscore.js 将数组转换为哈希图来访问我想要的对象数组。