防止IE缓存jaydata请求的数据



如何防止IE缓存数据与jaydata请求?

我读了这篇文章:如何防止jQuery Ajax请求缓存在Internet Explorer?这篇文章:http://www.greenvilleweb.us/how-to-web-design/problem-with-ie-9-caching-ajax-get-request/

我发现jQuery的解决方案是设置{cache:false}。但是我怎么用jaydata请求做到这一点呢?

$data.initService(url)
  .then(function(db) {
    db.table ....

我修改了函数,使其接受参数"time"。这允许我有与jQuery {cache: false}相同的行为。上面的链接解释了这种行为。这个修复我的问题:

$data.initService(url)
  .then(time, function(db) {
    db.table ....

相关内容

  • 没有找到相关文章

最新更新