我试图让流程方法的结果成为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