我已经提到了这个链接
创建我自己的 api 但面临路由错误,因为这是我第一次使用命名空间。
这是我的控制器
class API::IndexController < ApplicationController
def index
@clients = Client.all
respond_to do |format|
format.json
end
end
end
我的路线有
namespace :api do
resources :index
end
这是我的转折点.rb
ActiveSupport::Inflector.inflections(:en) do |inflect|
inflect.acronym 'API'
end
完成后,我尝试了 localhost:3000/api/index.json 但抛出错误为
Routing Error
uninitialized constant API
任何人都可以帮忙。