我有这个代码恶臭抱怨 DuplicateMethodCall (调用 format.json 两次)
if object_error.blank?
format.json { render json: order }
else
format.json { render json: object_error, status: :unprocessable_entity }
end
在rails中最好的方法是什么?或者这是误报?
我有这个代码恶臭抱怨 DuplicateMethodCall (调用 format.json 两次)
if object_error.blank?
format.json { render json: order }
else
format.json { render json: object_error, status: :unprocessable_entity }
end
在rails中最好的方法是什么?或者这是误报?