阻止IE使用jaydata请求缓存数据

时间:2014-05-11 17:53:33

标签: internet-explorer caching jaydata

如何阻止IE使用jaydata请求缓存数据?

我看过这篇文章: How to prevent a jQuery Ajax request from caching in 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 ....

非常感谢任何建议。

1 个答案:

答案 0 :(得分:0)

我修改了我的函数,使其接受参数“time”。这允许我与{cache:false}具有与jQuery相同的行为。在上面的链接中解释了此行为。这解决了我的问题:

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