5

我的应用程序(Rails 4)允许用户对帖子进行投票。是否可以缓存帖子,但个性化投票缓存,以便显示为 current_user 个性化的帖子?例如,用户是否投票。

我宁愿不改变 html 结构来实现这一点。

# posts/_post.html.slim
- cache post do
  h1 = post.title
  = post.text
  = render 'votes/form', post: post

# votes/_form.html.slim
- if signed_in? && current_user.voted?(post)
  = form_for current_user.votes.find_by(post: post), method: :delete do |f|
    = f.submit
- else
  = form_for Vote.new do |f|
    = f.submit
4

2 回答 2

5

您在这里有两个选择:

选项 1:不缓存选票

这是最简单的解决方案,也是我个人推荐的解决方案。你只是不缓存动态用户相关部分,所以你有这样的东西:

# posts/_post.html.slim
- cache post do
  h1 = post.title
  = post.text
= render 'votes/form', post: post # not cached

选项 2:使用 javascript

这个解决方案更复杂,但实际上是 basecamp 的做法(但主要是更简单的示例)。您在页面上呈现了这两个部分,但使用 javascript 删除了其中一个。这是一个使用 jQuery 和 CoffeeScript 的示例:

# posts/_post.html.slim
- cache post do
  h1 = post.title
  = post.text
  = render 'votes/form', post: post

# votes/_form.html.slim
div#votes{"data-id" => post.id}
  .not_voted
    = form_for current_user.votes.find_by(post: post), method: :delete do |f|
      = f.submit
  .voted
    = form_for Vote.new do |f|
      = f.submit

# css
.not_voted {
  display:none;
}

# javascript (coffeescript)
jQuery ->
  if $('#votes').length
    $.getScript('/posts/current/' + $('#votes').data('id'))

# posts_controller.b
def current
  @post = Post.find(params[:id])
end

# users/current.js.erb
<% signed_in? && current_user.voted?(@post) %>
  $('.voted').hide();
  $('.not_voted').show();
<% end %>

但是,我会正确更改voted?方法以接受 id,因此您无需进行新查询。您可以在此 railscasts 中了解有关此方法的更多信息:http: //railscasts.com/episodes/169-dynamic-page-caching-revised?view=asciicast

于 2013-06-20T08:33:49.610 回答
1

尝试以下操作,这将为每个帖子的已投票和未投票创建 2 个不同的片段。它将根据其状态被读取。

# posts/_post.html.slim
- cache [post, current_user.votes.find_by(post: post)]do
  h1 = post.title
  = post.text
  = render 'votes/form', post: post
于 2014-08-27T21:43:04.627 回答