在大写命名空间内生成脚手架控制器

发布于 2024-10-31 18:10:17 字数 92 浏览 1 评论 0原文

我正在使用 apn_on_rails gem,它在名为 APN 的命名空间下有几个模型。 为 APN::Device 模型生成脚手架控制器并正确路由到它的正确方法是什么?

I'm using the apn_on_rails gem, that has few models under a namespace named APN.
What is the correct way to generate a scaffold controller for the APN::Device model and route to it correctly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唯憾梦倾城 2024-11-07 18:10:17
  1. 您可以手动创建它。
  2. 至于 Ruby 使用下划线而不是 CamelCase,你可以尝试这个:

rails g 脚手架 a_p_n::Device ...

将为您生成此模型:

class APN::Device < ActiveRecord::Base
end

app/models/a_p_n/device.rb

,它将为您生成路线:

namespace :a_p_n do 
  resources :devices 
end
  1. You can create it just by hands, manualy.
  2. As far as Ruby uses underscore instead of CamelCase you can try this:

rails g scaffold a_p_n::Device ...

which will generate this model for you:

class APN::Device < ActiveRecord::Base
end

in app/models/a_p_n/device.rb

and it will generate routes for you:

namespace :a_p_n do 
  resources :devices 
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文