Rails:更改 _destroy 功能?

发布于 2024-10-31 05:22:15 字数 213 浏览 2 评论 0原文

我正在使用 accepts_nested_attributes_for 来处理某些嵌套资源,并使用 _destroy 标志来删除表单保存中的项目。

但我希望它只是将 active 布尔字段更新为 false,而不是在记录上实际运行 _destroy

我怎样才能做到这一点?

I'm using accepts_nested_attributes_for for some nested resources and am using the _destroy flag to remove an item on form save.

But instead of _destroy actually running DELETE on a record, I'd like it to just update an active boolean field to be false.

How can I do that?

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

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

发布评论

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

评论(1

往日情怀 2024-11-07 05:22:15

嗯..那么你为什么使用_destroy?只需添加 active 复选框而不是 _destroy

<%= form_for @object do |f| %>
  ...
  <%= f.fields_for @some_nested_object do |b| %>
    ...
    <%= b.check_box :active %>
    ...
  <% end %>
  ...
<% end %>

Ehm.. So why do you use _destroy? Just add active checkbox istead of _destroy

<%= form_for @object do |f| %>
  ...
  <%= f.fields_for @some_nested_object do |b| %>
    ...
    <%= b.check_box :active %>
    ...
  <% end %>
  ...
<% end %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文