如何在 Rails 2.3.8 中的控制器方法上放置警报框?
我正在 Rails 2.3.8 上开发项目,我需要在我的控制器之一的方法中间获得警报框。可以在铁轨上这样做吗?请专家可以分享一下您对此的想法吗?
I'm developing project on rails 2.3.8 and I need to get alert box on middle of a method in one of my controller. Is it possible to do so on rails ? Please can expert share your idea about this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要调试你的程序吗
有很多方法可以调试
在你的方法中使用puts语句puts@user
如果你使用一些IDE,那么必须有一些插件。Ex 。对于 Netbeans,有 ruby-debug-ide gem
您可以使用 PRY gem 来调试代码。我建议使用这个 pry
Do you need to debug you program
there are many ways to debug
Use puts statement in your method puts @user
If you are using some IDE then there must be some plugin for it.Ex. for Netbeans there is ruby-debug-ide gem
You can use PRY gem to debug your code. I would suggest this one pry
使用rubymine,它可以让你调试你的rails进程,你可以放置断点然后单步执行你的方法。
您可以使用更多手动调试选项。
除了使用 rubymine 进行调试之外,有时最快的方法就是在日志文件中写入内容。
Use rubymine, it will allow you to debug your rails process, and you can place breakpoints and then step through your method.
You can resort to the more manual options of debugging.
Aside from debugging with rubymine, sometimes the fastest way is just writing stuff in the logfile.