Symfony 1.4 Doktrin Sluggable davranışları, garip behaivior!

0 Cevap php
A:
  columns:
    id: ...
    name: type ....
    b_id: type ... 
  actAs:
    Sluggable:
      unique: true
      fields: [name, b_id]
      canUpdate: true
  relations:
     B: { foreignAlias: As } 
B:
  columns:
    id : ...
    name: ...

Above the sort of schema =). It at least should give you the idea. Desigred slug format "A.name-B.name"

Ben alan A.slug (tüm varsayılan gitti, bunu ayarlamak için bir şey yapmadım) doğru oluşturulan bir csv ileti yazdım.

But I am facing issue when saving the record in the backend(symfony admin generator). It is generating the slug as A.name-B.id. Q: What is the best way/direction to handle this case, so I have normal slugs without IDs

0 Cevap