关于 Ruby on Rails 中的 MVC 的基本问题
我在理解 Ruby on Rails 中 MVC 的实现时遇到了一些困难。我是否应该将大部分代码放入模型中,使用控制器将它们链接到视图?必要时我是否使用redirect_to 在不同控制器之间移动?
I'm having a bit of trouble understanding the implementation of MVC in Ruby on Rails. Am I supposed to put the bulk of my code in the models, using the controllers to link them to the views? Do I use redirect_to to move between different controllers when necessary?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将逻辑放入模型中。如果需要,请使用重定向。但是您经常将其用于 POST 答案,其他用例并不常见。
You put your logic into the models. If needed, use redirect. But you use that often for POST answers, other use cases are not that common.