- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
到现在为止,我一直使用 Responds_to 块指定操作的响应格式,如下所示:
responds_to do |format|
format.js { render :json => @record }
end
最佳答案
我将与现有答案不同——我喜欢 responds_to
阻止我的所有行为。我发现,虽然稍微冗长一些,但它更清楚地自我记录了该操作。它还使将来支持其他格式变得容易。 编辑:另一个优点是它充当看门人。任何未在块中声明的格式都会自动提供“406 Not Acceptable”
关于ruby-on-rails - 总是使用 response_to?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2121279/
到现在为止,我一直使用 Responds_to 块指定操作的响应格式,如下所示: responds_to do |format| format.js { render :json => @reco
在添加书目表单中,我创建了一个添加作者表单,该表单使用 json 添加作者。 这工作正常。 但是,当作者被添加到数据库时,我想显示一条成功消息。 这是我的代码: def create @aut
我明白了 respond_to当它被这样调用时工作: def index @users = User.all respond_to do |format| format.html
我有一组报告,这些报告使用 Rails 调用“respond_to”以各种格式显示,这样如果 URL 以 CSV 或 JSON 结尾,则以该格式生成报告。 我请求制作一个下载按钮,以便更轻松地获取报告
我的 Controller 中有以下代码可以导出 csv 文件 ... def export @filename = 'users.csv' @output_encoding =
我在获取 jQuery Form Plugin 时遇到了一些麻烦使用文件上传字段正常工作。当我使用插件提交没有文件上传字段的表单时,format.json respond_to do |format|
我有一个具有 if 条件的 Controller : def update @contact_email = ContactEmail.find(params[:id]) if @
这是我的 Controller 操作中的常见模式: respond_to do |format| format.html {} format.js { render :layout =
我是一名优秀的程序员,十分优秀!