我将新数据插入到 sqlite(使用 buttonclick),然后如何刷新我的项目列表,以便我可以在不重新启动应用程序的情况下看到新数据。我使用 javascript&html 来制作一个 win8app。
我没有在应用程序中使用数据绑定。
// Because we're doing the rendering, we need to put the data into the item.
// We can't use databinding.
result.getElementsByClassName("item-image")[0].src =currentItem.data.backgroundImage;
result.getElementsByClassName("item-note-day")[0].textContent = currentItem.data.noteDay;
result.getElementsByClassName("item-iconClassImage")[0].src = currentItem.data.iconImage;
result.getElementsByClassName("item-noteTitle")[0].textContent = currentItem.data.noteTitle;
result.getElementsByClassName("item-noteExcerpt")[0].textContent = currentItem.data.noteContent;
return result;
我想要的是当我单击按钮时,我将数据插入 sqlite 并刷新列表视图,这样我就可以看到我的所有数据都包括新数据。我成功地将我的数据插入到 sqlite 中。
对不起,我是中国人,这是我第一次用英语提问。我不知道我清楚吗?如果有人可以帮助我,谢谢。