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.
当我第一次尝试在我的 phonegap 应用程序中加载调度程序日历时,它会显示我真正想要的正确数据,但是当我回到其他页面并尝试加载不同的数据时,日历没有正确刷新。它根据旧 ID 显示旧数据。它不解析新 id 的数据。
也许你可以在你的javascript文件的“pageshow”方法上调用日历,比如:
$page.on('pageshow', function(){ showCalendar(); })
$page.on('pageshow', function(){
showCalendar();
})