通过跳过模型创建脚手架
我有 Rails 2.3 和 ruby 1.8.7
我只想创建一个控制器并查看它的文件。 Rails2.3 中是否有任何命令可以帮助我做到这一点。我知道这可以在 Rails 3 中完成,但是有没有办法在 Rails 2.3 中做到这一点
I have rails 2.3 and ruby 1.8.7
I want to create only a controller and view files for it. Is there any command in rails2.3 that will help me in doing this. I know this can be done in rails 3, but is there a way to do this in rails 2.3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在 Rails 目录中输入
script/generate controller [controller_name] [action_name_1] [action_name_2] ...
即可使用给定的操作和相应的视图文件创建控制器。Just say
script/generate controller [controller_name] [action_name_1] [action_name_2] ...
in the Rails directory to create a controller with the given actions and corresponding view files.