如果我使用我的 Rails 应用程序主要响应 json,那么在 json 中返回空对象的“新”或“编辑”操作是否仍然必要/有用?例如:
def new
@post = Post.new
respond_to do |format|
format.json { render :json => @post }
end
end
我觉得我可以通过完全在 html 中构建表单来摆脱服务器调用
如果我使用我的 Rails 应用程序主要响应 json,那么在 json 中返回空对象的“新”或“编辑”操作是否仍然必要/有用?例如:
def new
@post = Post.new
respond_to do |format|
format.json { render :json => @post }
end
end
我觉得我可以通过完全在 html 中构建表单来摆脱服务器调用