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.
我已经编写了一个 Drupal 块和一个 ajax 调用来在加载块时刷新它(块内容)。(这是因为我启用了缓存)。
但现在我的问题是每当我访问缓存页面时,我都会收到响应 - “304 Not Modified”。因此,我没有得到我想要的正确内容。
我找到了一个解决方案,可以传递一个数字 - new Date().getTime() - 这样虽然页面被缓存,但由于下一个请求有另一个数字,我得到了正确的值。但这似乎很“丑陋”。:)
还有其他方法可以完成这项任务吗?
谢谢....
使用cacheexclude模块从缓存中排除该 URL。