如何在 Rails 2.3.8 中的控制器方法上放置警报框?

发布于 2024-12-08 01:05:22 字数 79 浏览 2 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

触ぅ动初心 2024-12-15 01:05:22

你需要调试你的程序吗
有很多方法可以调试

  1. 在你的方法中使用puts语句puts@user

  2. 如果你使用一些IDE,那么必须有一些插件。Ex 。对于 Netbeans,有 ruby​​-debug-ide gem

  3. 您可以使用 PRY gem 来调试代码。我建议使用这个 pry

Do you need to debug you program
there are many ways to debug

  1. Use puts statement in your method puts @user

  2. If you are using some IDE then there must be some plugin for it.Ex. for Netbeans there is ruby-debug-ide gem

  3. You can use PRY gem to debug your code. I would suggest this one pry

浮云落日 2024-12-15 01:05:22

使用rubymine,它可以让你调试你的rails进程,你可以放置断点然后单步执行你的方法。

您可以使用更多手动调试选项

除了使用 ruby​​mine 进行调试之外,有时最快的方法就是在日志文件中写入内容。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文