我将信息发送到外部服务器,该服务器更新该服务器上数据库的某些内容。更新正在运行,但更新的信息未显示在我的应用程序中。我需要关闭应用程序并重新打开以查看更新的内容。无论如何,我可以在不必重新启动应用程序的情况下进行刷新。
我试图在POST成功后进行刷新但不会发生。 POST发生在ID为#update的页面中。我想用数据库中的新信息刷新该页面的内容。该应用程序是使用JQuery Mobile构建的。
$.ajax({
type: "POST",
url: "myURL",
data: {},
error: function (jqXHR, textStatus, errorThrown) {
alert("Server down. Try Later")
},
success: function (data) {
//I am able to arrive here after a successful update to the server.
$.mobile.changePage("#update"); //Doesn't refresh
alert("Update Successful");
}
});