当前位置:  开发笔记 > 后端 > 正文

不推荐使用":nothing"选项,将在Rails 5.1中删除

如何解决《不推荐使用":nothing"选项,将在Rails5.1中删除》经验,为你挑选了1个好方法。

这个代码在rails 5中

class PagesController < ApplicationController
  def action
    render nothing: true
  end
end

导致以下弃用警告

DEPRECATION WARNING: :nothing` option is deprecated and will be removed in Rails 5.1. Use `head` method to respond with empty response body.

我该如何解决?



1> Linus Oleand..:

根据导轨源,这在通过nothing: true导轨5 时在引擎盖下完成.

if options.delete(:nothing)
  ActiveSupport::Deprecation.warn("`:nothing` option is deprecated and will be removed in Rails 5.1. Use `head` method to respond with empty response body.")
  options[:body] = nil
end

只需更换nothing: truebody: nil因此应该解决的问题.

class PagesController < ApplicationController
  def action
    render body: nil
  end
end

或者你可以使用 head :ok

class PagesController < ApplicationController
  def action
    head :ok
  end
end


`head`方法是首选语法.更清洁.
@FellowStranger,它不是`render head :: ok`,它是`head:ok`.没有`渲染`.我也在努力解决这个问题.
如果您想更改状态代码,除了`:ok`之外还有其他选项http://guides.rubyonrails.org/layouts_and_rendering.html#the-status-option
`render body:nil`为我工作,`render head:ok`没有(它给出了一些双重渲染错误).
另一个例子是`head:unauthorized`返回状态码401
推荐阅读
无名有名我无名_593
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有