该代码在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.
我该如何解决?
2
为什么这被否决?
—
Linus Oleander
可能是因为弃用警告会告诉您确切的解决方法。
—
sevenseacat '16
@sevenseacat不,它仅指,仅此而已
—
Linus Oleander
head
。您仍然必须查找正在使用的API。请注意,这是一篇问答式的文章,旨在快速解决上述弃用警告,而无需通读官方API。目前,以上警告已在Google上排名第一,这是我最初的目标。