我对 Ruby 非常陌生,所以如果这个问题看起来非常简单或含糊,我提前道歉。
使用时在哪里jsonapi-resources
指定 JSON API 链接的基本路径?我希望从指定完整 URL 更改root-relative
为这些资源的路径。
我找到routes.rb
了
Rails.application.routes.draw do
# Route / to the front-end
root to: 'root#index'
namespace :api do
jsonapi_resources :widgets
// ...more jsonapi_resources calls
end