我有一些用于API响应的控制器,但应用程序的其余部分是常规的Rails 5应用程序。
如果我将基类更改为
,有什么区别ApplicationController::API
与
ApplicationController
我注意到如果我做:: API然后我需要添加json:渲染时,我才能渲染msg
幕后是从API继承的请求/响应更加精简?
class Api::V1::TestController < ????
def index
msg = {status: "ok", message: "hello world"}
render json: msg
end
end
答案 0 :(得分:4)