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.
既存のアイテムをすべて追加するのではなく、アイテムを最初のアイテムとしてコンテナに追加できますか?
私が理解していることからthis.add([item])、アイテムは最後のアイテムとして追加されますが、他のものが追加される前に画面の上部に表示したいと思います。
this.add([item])
次のようにコンテナの挿入メソッドを使用できます。
this.insert(0 , item);
どこに表示されるかは、レイアウトによって異なります。