將對象添加到具有主幹的第一個位置的集合中? (Adding object to a Collection in the first position with backbone?)


問題描述

將對象添加到具有主幹的第一個位置的集合中? (Adding object to a Collection in the first position with backbone?)

我有一個簡單的函數可以將文件夾添加到名為“文件夾”的集合中。

folderAdded: function(folder) {
            this.folders.add(folder);
            this.$el.empty();
            this.render();
    }

默認情況下,這會將對象添加到第一個位置,因此它會出現在第一個位置。由於我的查詢是按創建順序排列的,如果我刷新頁面,對象將排在第一位。

如何在集合的開頭添加對象?


參考解法

方法 1:

You can use unshift method of the collection.

Add a model at the beginning of a collection. Takes the same options as add

(by DuveralT J)

參考文件

  1. Adding object to a Collection in the first position with backbone? (CC BY‑SA 2.5/3.0/4.0)

#collections #backbone.js






相關問題

C ++中集合/容器的接口/超類 (Interface/Superclass for Collections/Containers in c++)

如何將對象列表轉換為兩級字典? (How to convert a list of objects to two level dictionary?)

如何在java中限制哈希集的默認排序 (how to restrict default ordering of Hash Set in java)

將兩個單獨的 Set 轉換為二維數組 (Convert two separate Sets to a 2D array)

事件調度線程從列表異常 SWING 中移除 (Event dispatching thread remove from List exception SWING)

將集合項複製到 .NET 中的另一個集合 (Copy collection items to another collection in .NET)

java - 如何在java中使用某些特定索引將值存儲到arraylist中 (how to store value into arraylist with some specific index in java)

將對象添加到具有主幹的第一個位置的集合中? (Adding object to a Collection in the first position with backbone?)

在VB中過濾一個wpf collectionviewsource? (Filter a wpf collectionviewsource in VB?)

將流式數據讀入排序列表 (Reading streamed data into a sorted list)

有沒有一種自動處理數組和強類型集合之間轉換的好方法? (Is there a good way to handle conversions between arrays and strongly typed collections automatically?)

將數據行轉換為 1 個對象 (Convert data rows to 1 object)







留言討論