我有这个
class ScriptsController < ApplicationController
before_action :authenticate_user!
load_and_authorize_resource
def run
@script.update(script_params)
Delayed::Job.enqueue ScriptRunnerJob.new(@script)
render head :ok
end
end
我在运行中遇到DoubleRenderError。 有什么想法吗?
答案 0 :(得分:4)
render
和head
都是执行渲染的方法。您只想呼叫其中一个。
# This is all you need
head :ok