通过按钮调用 Ruby 方法

发布于 2024-12-07 21:56:21 字数 202 浏览 1 评论 0原文

简单的问题,通过按钮调用 ruby​​ 方法的最佳方法是什么?目前,该按钮只会调用 JS 函数,但我需要它执行 Ruby 方法。

基本上,该按钮必须将 Excel 电子表格与我的数据库进行比较,并在另一页的表格中显示差异。如何在不生成新模型的情况下创建该页面?很抱歉问了这个愚蠢的问题,但我只是遵守惯例,因此我不确定应该如何创建新页面。

预先感谢您的任何帮助

Quick question, what's the best way to call a ruby method via a button? At the moment, the button will only call a JS function but I need it carry out a Ruby method.

Basically, the button has to compare an Excel spreadsheet with my database and display the difference in a table on another page. How can I create that page without generating a new model? Sorry for the stupid question, but I've only been sticking to the conventions, hence I am unsure as to how I should create a new page.

Thanks in advance for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

深居我梦 2024-12-14 21:56:21

查看 button_to 方法。

<%= button_to "Compare Excel", :action => "compareExcel" %>

Take a look at the button_to method.

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