symfony 1.4 如何在 slug 中包含 Id 或自动生成的主键字段

发布于 2024-11-10 12:07:43 字数 289 浏览 4 评论 0原文

我需要从字段 id 和 name 形成 slug。
就像 id-name

架构代码
可打压:
  字段:[id,标题]

但我无法这样做。

当我尝试其他列时,如
可打压:
字段:[unique_id、标题]
有用 :( 有人可以帮忙吗???

谢谢

I need to form slug from fields id and name.
like id-name

Schema Code
Sluggable:
  fields: [id, title]

But i am unable to so.

Where as when i try some other column like
Sluggable:
  fields: [unique_id, title]
It works :(
Can anybody help???

Thanx

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

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

发布评论

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

评论(2

自我难过 2024-11-17 12:07:43

您可以重写模型类中的 setSlug() 方法

You can override the setSlug() method in the model class

你的笑 2024-11-17 12:07:43

我在表单保存操作中添加了这个技巧:

$title  = $object->getTitle();
$object->setTitle($title." ");
$object->save();
$object->setTitle($title);
$object->save();

此解决方法保存两次对象,第二次保存 ID。
问题是在第一个 save() 中,它不知道记录的 ID。

I added this trick in the form saving action:

$title  = $object->getTitle();
$object->setTitle($title." ");
$object->save();
$object->setTitle($title);
$object->save();

This workaround save twice the object and the second one takes the ID.
The problem is that in the first save(), it doesn't know the ID of the record.

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