RubyMine 中的脚手架在哪里
我正在尝试 RubyMine,并观看本教程 https://www.jetbrains.com/ruby/documentation / 。作者在那里使用项目->新->脚手架,但我在那里找不到脚手架。怎么了?
I'm trying RubyMine, and watching this tutorial https://www.jetbrains.com/ruby/documentation/ . The author uses there project->new->scaffold but i could not find scaffold there. What's wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
每当在 RubyMine 中搜索某些内容时,强烈推荐的就是“搜索”->“查找操作”(Cmd-Shift-A)。
只需在搜索字段中输入“scaffold”,它就会显示相关的 IDE 操作。
Whenever searching for something in RubyMine, a highliy recommented thing is "Search"->"Find Action" (Cmd-Shift-A).
Just type "scaffold" in the search field and it shows the relevant IDE actions.
点击文件->新->运行 Rails Generator...
输入scaffold 并按回车键,您可以输入scaffold 参数
在下一个对话框中
Click on File -> New -> Run Rails Generator...
type scaffold and press enter
in the next dialog you can enter the scaffold parameters
借助 RubyMine,我经常发现更容易使用终端执行 Rails 命令,例如生成脚手架和迁移,并使用 RubyMine 界面来观察服务器控制台中发生的情况、获取数据库或路由等。这是两全其美的方法。祝你好运。
With RubyMine, I often find it easier to use the terminal for Rails commands like generating scaffolds and migrations and use the RubyMine interface for watching what's happening in the server console, raking the database or routes, etc. It's sort of the best of both worlds. Good luck.