The Programmer
Api
Ruby on Rails 5 api subdomain
為了要 demo api subdomain 的頁面是否能夠運作,這邊用鷹架隨便建立個東西。
1 | rails g scaffold api::v1::books title |
使用 constraints 限制 subdomain: 'api'
。
然後用 scope module: 'api'
加上 app/controllers/api 這個資料夾。
1 | # config/routes.rb |