如何用简单的形式定义动作?

发布于 2024-12-05 13:57:58 字数 323 浏览 1 评论 0原文

我正在尝试在管理/摄影师控制器中定义操作“savenew”。

我已经尝试过:

<%= simple_form_for(:photographer_savenew, :action => 'savenew', :id  => params[:id],  :multipart => true ) do |f| %>

但表单中的操作仍然是: /admin/photographers

当它应该是: /admin/photographers/savenew

I am trying to define the action "savenew" in admin/photographers controller.

I have tried this:

<%= simple_form_for(:photographer_savenew, :action => 'savenew', :id  => params[:id],  :multipart => true ) do |f| %>

But the action in the form is still: /admin/photographers

When it should be: /admin/photographers/savenew

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

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

发布评论

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

评论(1

仲春光 2024-12-12 13:57:58

您有没有为此使用 REST 的原因吗?它将使您的生活变得更加轻松并且需要更少的代码。如果您决定使用此自定义操作,则需要指定 url 以及可能的方法:

<%= simple_form_for @photographer, :url => savenew_photographers_path, :method => :post ... # etc

Is there a reason you're not using REST for this? It would make your life a lot easier and requires much less code. If you're set on using this custom action, you will need to specify the url and probably the method:

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