标签: ruby-on-rails
我想使用api / v1 / whatever_class为我的Rails API使用正确的命名空间。生成资源时,我做了rails g resource api/v1/games以及参数。它迁移没有问题。
rails g resource api/v1/games
我通过编写Api::V1::Game.create(params)在种子文件中对其进行了测试,甚至可以毫无问题地植入种子。
Api::V1::Game.create(params)
但是,当我进入控制台时,Api::V1::Game.count返回0。应该为1。
Api::V1::Game.count
我这样做正确吗?这是最好的方法吗?