开拓者进程返回to_json

时间:2017-01-24 18:16:03

标签: ruby-on-rails ruby trailblazer

我试图让流程方法的结果成为to_json的一部分。我试过重写to_json方法并引入一个代表。但是我无法访问其中任何一个的回报

class TestOperation < Trailblazer::Operation

  def process(params)
    validate(params)
    m = TestModel.new
    m.build_stuff
    m.result
  end
end

当我运行以下内容时,我需要处理结果

op = TestOperation.call(params)
puts op.to_json

0 个答案:

没有答案