码迷,mamicode.com
首页 > Web开发 > 详细

Rails 返回 json

时间:2020-07-05 00:55:39      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:active   load   json   port   class   文件   clu   ase   success   

在写代码过程中,经常用到 ajax,那么我们也可能会返回 json 数据:

render json: { success: true, ...}
或者
render json: { success: false, ...}

这样的代码如果每个都被 ajax 调用都方法都写一遍都话会很冗余,那么我们可以在 Controller 文件夹下新建 concerns 文件夹,里面新建 rendering_helper.rb 文件。

rendering_helper.rb:

module RenderingHelper
  extend ActiveSupport::Concern

  private

  # 刷新通过 ajax 调用方法的当前页面
  def render_turbolinks_reload
    render js: ‘Turbolinks.reload()‘
  end

  def render_ajax_success(data = {})
    render json: data.merge(success: true)
  end

  def render_ajax_failure(data = {})
    render json: data.merge(success: false)
  end
end

然后我们在 application_controller.rb 中引用,就可以在继承 ApplicationController 的子类中直接调用下面的方法。

class ApplicationController < ActionController::Base
  include RenderingHelper
end

Rails 返回 json

标签:active   load   json   port   class   文件   clu   ase   success   

原文地址:https://www.cnblogs.com/Mr-RanX/p/13237255.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!