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.
我试图在绑定后将一个项目添加到列表视图中,但我没有找到解决方案。
我不想编写自定义控件。
我将用来制作“获取更多”按钮。
谢谢
您是否使用 WinJS.Binding.list 作为数据源?如果是这样,它就像一个数组,只需执行以下操作:
myData.push(newItem);
它会显示在列表末尾的列表视图中。splice如果您想将新项目粘贴在中间的某个位置,您可以使用该方法。
splice