Rails3 通过单击按钮调用特定控制器的特定操作

发布于 2024-12-10 08:41:57 字数 99 浏览 0 评论 0原文

在视图页面上有一个标签 <%= Submit_tag "Some text" %>它呈现相应控制器的“创建”操作(不是吗?)。是否可以通过单击按钮来呈现另一个控制器的操作?

On the view pages there is a tag <%= submit_tag "Some text" %> which renders the correspondent controller's 'create' action(isn't it?). Is it possible to render action of another controller's by the button click?

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

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

发布评论

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

评论(2

灼疼热情 2024-12-17 08:41:57

这是可能的,但不能使用 submit_tag 方法。您想要更改相应的 form_tag 方法,该方法接受 '/posts''/posts/your_action' 等参数。所以你可以这样做:

<%= form_tag('/posts') %>
…
<%= submit_tag %>

问候

托比亚斯

That's possible, but not with the submit_tag method. You want to alter the corresponding form_tag method, which accepts an argument like '/posts' or '/posts/your_action'. So you could do:

<%= form_tag('/posts') %>
…
<%= submit_tag %>

Regards

Tobias

巾帼英雄 2024-12-17 08:41:57

检查 link_tobutton_to助手或模块本身

Check link_to and button_to helpers or the module itself

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