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.
我正在制作一个应用程序,在其中我从服务器获取文本并将其显示在 UIWebview 中。一段时间后,添加更多文本并通知客户端(iphone)有关附加文本。现在我想将此文本注入我的 UIWebview。
一种方法是更新一些文本文件并重新加载内容。But I dont want to reload the page.
But I dont want to reload the page.
另一种方法是使用 javascript 检查本地文件中的更新(这似乎更好)。
有没有已知的更好的解决方案?
如果您想保留所有用户编辑的数据(如果有的话),我相信 javascript 会更好。而且应该比重新加载所有页面更快。
如果您从服务器获取数据,为什么不直接使用JavaScript并AJAX执行更新页面的请求呢?
JavaScript
AJAX
这使您可以跳过更新“模板”文件的中间人。只需加载所有数据,AJAX以便始终在页面上拥有最新的数据。
$.ajax({ url: 'ajax/test.html', success: function(data) { $('.result').html(data); alert('Load was performed.'); } });