symfony 1.4 如何在 slug 中包含 Id 或自动生成的主键字段
我需要从字段 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以重写模型类中的 setSlug() 方法
You can override the setSlug() method in the model class
我在表单保存操作中添加了这个技巧:
此解决方法保存两次对象,第二次保存 ID。
问题是在第一个 save() 中,它不知道记录的 ID。
I added this trick in the form saving action:
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.