关于javascript:将项目添加到列表的开头

Add item to the beginning of the list

本问题已经有最佳答案,请猛点这里访问。

我一直在使用以下代码向列表末尾添加新注释:

1
 ractive.push('BlogPosts.BlogPostId.Comments', newComment);

但是现在我需要在列表的开头添加一个项目。我查阅了实用文档,但没有找到合适的方法。


使用数组的unshift方法:

1
ractive.unshift('BlogPosts.BlogPostId.Comments', newComment);