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);
它会出现在哪里取决于您的布局。