无意中缓存的JavaScript参数

时间:2016-06-05 00:56:58

标签: javascript jquery

在我的php文件中,我用

调用这个jQuery插件
<script>$.notifications('resources/notifications.inc.php');</script>

我以前有过php文件:

resources/dashboard.notifications.php

后来把它移到我现在所拥有的,即:

resources/notifications.inc.php

我遇到的问题是缓存参数,并且仍然显示requestUrl的旧通知php文件。我已经清除了我的饼干和一切。我该怎么办?我不知道存储旧值的位置。

这是我打电话的插件。

$.extend({
    notifications: function() {
        Notifications.requestUrl = arguments[0];
        console.log(Notifications.requestUrl + " and " + arguments[0]);
        Notifications.interval = arguments[1] || 15000;

    }
});

最后输出我进入控制台。 (JSON中的意外令牌来自它试图请求的不存在的php文件) See image

1 个答案:

答案 0 :(得分:0)

似乎 实际上是第二次被调用,在另一个文件中 dashboard.js