我想知道哪种是在rails中的respond_with方法中处理http错误的最佳方法:
respond_to :html, :json
# @my_resources = []
def index
respond_with @my_resources
end
此操作正在响应http 200状态代码。 http 204对于http请求是“无内容”响应,并且似乎更适合客户端的原始请求(具有json格式)的正确答案。其他请求和响应也会发生相同的行为。
将W3的结果与204响应代码联系起来