我可以使 csDoctrineActAsSortablePlugin 不唯一吗?

发布于 2024-11-30 23:54:44 字数 163 浏览 2 评论 0原文

我使用 symfony 1.4、doctrine 和 csDoctrineActAsSortablePlugin 进行排序。但我只需要它在子窗体中,因此位置的唯一性令人不安。有没有可能让它变得不独特?

我已经在考虑手动完成这件事,但如果我能避免再次发明轮子,我将非常感激。

干杯!

I am using symfony 1.4, doctrine and the csDoctrineActAsSortablePlugin for sorting. But I only need it in subform, so that the uniqueness of the position is disturbing. Is there by any chance a posibility to make it not unique?

I am already thinking of doing it manually but if I can avoid to invent the wheel a second time, I am more than thankful.

Cheers!

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

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

发布评论

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

评论(1

折戟 2024-12-07 23:54:44

只需查看源代码,我认为可以禁用 unique 选项。

在您的 schema.yml 中:

MyModel:
  columns:
    ...
  actAs:
    Sortable:
      unique: false

您还可以使用 uniqueBy 选项来设置引用父级的字段名。然后,它将通过 position 和字段创建唯一索引。像这样的东西:

MyModel:
  columns:
    parent_id: ~
  actAs:
    Sortable:
      uniqueBy: parent_id

Just by looking at the source, I think it's possible to disable the unique option.

In your schema.yml:

MyModel:
  columns:
    ...
  actAs:
    Sortable:
      unique: false

You could also use the uniqueBy option to set the fieldname which references the parent. It will then create an unique index by both position and the field. Something like this:

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