更改 jeditable Rails gem 中的更新操作

发布于 2024-11-07 11:53:34 字数 302 浏览 0 评论 0原文

我希望 editable_field 在我的控制器中调用自定义操作,而不是调用“更新”方法。

这是我在 haml 文件中的代码(我在 :action 属性中编写了要调用的操作):

editable_field(today_clockings[col-1], :clocking, |
   {:update_url => resource_clocking_path(@resource, today_clockings[col-1]), :action => "update_ts_clocking"}) |

I would like that the editable_field call a custom action in my controller instead to call the 'update' method.

This is my code in the haml file (i write the action i want to invoke in the :action attribute):

editable_field(today_clockings[col-1], :clocking, |
   {:update_url => resource_clocking_path(@resource, today_clockings[col-1]), :action => "update_ts_clocking"}) |

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

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

发布评论

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

评论(1

箹锭⒈辈孓 2024-11-14 11:53:34

要执行您想要的操作,您必须编辑路线文件以创建操作的路线。例如:

routes.rb

match "today_clocking/update_ts_clocking" => 'today_clocking#update_ts_clocking', :as => :update_ts_clocking

然后在您的视图中:

<%= editable_field(today_clockings[col-1], :clocking, {:update_url => update_ts_clocking_path) %>

那么today_clockings_controller.rb将类似于:

def update_ts_clocking
    # Update model here with params[:today_clocking][:clocking]
end

To do what you want, you would have to edit your routes file to create a route to the action. For example:

In routes.rb

match "today_clocking/update_ts_clocking" => 'today_clocking#update_ts_clocking', :as => :update_ts_clocking

Then in your view:

<%= editable_field(today_clockings[col-1], :clocking, {:update_url => update_ts_clocking_path) %>

Then the today_clockings_controller.rb would be something like:

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