Rails-caches_action expire_action

发布于 2024-09-04 04:19:42 字数 421 浏览 3 评论 0原文

我想要使​​缓存的操​​作过期,并想知道如何生成正确的引用。

#controller
caches_action :index, :layout => false
#generates this fragment which works fine
views/0.0.0.0:3000/article/someid/posts

#sweeper
...
expire_action article_posts_path(:article_id => post.article)
# results in this
Expired fragment: views//en/article/someid/posts (0.0ms)

所以这几乎没问题,只是主机丢失了。我该怎么做才能将其提供给expire_action方法?

提前致谢。

I want to expire a cached action and wondered how to generate the correct reference.

#controller
caches_action :index, :layout => false
#generates this fragment which works fine
views/0.0.0.0:3000/article/someid/posts

#sweeper
...
expire_action article_posts_path(:article_id => post.article)
# results in this
Expired fragment: views//en/article/someid/posts (0.0ms)

So this is almost ok, except the host is missing. What do I do that supplies this to the expire_action method?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谈场末日恋爱 2024-09-11 04:19:42

使用 article_posts_url(:article_id => post.article)

resource_name_url 路由通过主机集生成 url。

Use article_posts_url(:article_id => post.article)

resource_name_url routes generate url with the host set.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文