only_provides 的 Rails 替代方案

发布于 2024-12-06 15:33:50 字数 343 浏览 1 评论 0原文

我想限制控制器内单个操作可用的响应格式。到目前为止我所拥有的(并且有效):

class SomeController < ApplicationController
  respond_to :json, :html

  ...

  def show
    respond_to do |format|
      format.html { render :edit }
    end
  end
end

这并不像我想要的那么干燥。在 Merb 中,您可以在方法内执行 only_provides :html 以获得相同的效果。 Rails 3中有类似的东西吗?

I'd like to limit response formats available for a single action inside a controller. What I have so far (and works):

class SomeController < ApplicationController
  respond_to :json, :html

  ...

  def show
    respond_to do |format|
      format.html { render :edit }
    end
  end
end

This is not as DRY as I'd like. In Merb you could do only_provides :html inside a method to get about the same effect. Is there something like that in Rails 3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城挽邺 2024-12-13 15:33:50
class SomeController < ApplicationController
  respond_to :json, :except => :show
  respond_to :html

  def show

  end
end
class SomeController < ApplicationController
  respond_to :json, :except => :show
  respond_to :html

  def show

  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文