ruby-on-rails – 是否可以在集合上使用陈旧方法?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 是否可以在集合上使用陈旧方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以使用陈旧?有收集?例如,我正在开发一个REST api,允许客户端偶尔查询服务器以询问最新的项目列表.如果陈旧会好的吗?可以根据我的If-Modified ..标题检查集合,如果没有任何变化则发送304.

快速举例:

def index
  @items = Item.all
  if stale?(@items)
    render json: @items
  end
end

def show
  if stale?(@item)
    render json: @item
  end
end

解决方法

对于Rails< 5:
stale?(last_modified: @items.maximum(:updated_at))

对于Rails> = 5只是:

stale?(@items)
原文链接:https://www.f2er.com/ruby/269620.html

猜你在找的Ruby相关文章