生成控制器空应用程序视图文件夹
当我生成新的控制器时,这只是发生在我或这个新的 Rails 上,视图文件夹仍然是空的。
This is just occurring with me or this new rails when i generate a new controller the view folder still empty.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试向生成命令添加一个方法
,我发现这将使控制器和视图
Try adding a method to the generate command
I found this will make the controller and the view
只有通过
railsgenerate
命令之一生成视图或通过添加文件手动生成视图后,才会创建视图。http://guides.rubyonrails.org/getting_started.html
Views aren't created until you generate them through one of the
rails generate
commands, or manually by adding in files.http://guides.rubyonrails.org/getting_started.html