我已成功设法安装sfDoctrineActAsTaggablePlugin,将Taggable行为添加到我希望在schema.yml中可标记的模型并重建所有模型。有人能指点我一个教程,展示如何将标签附加到对象并检索对象标签?我不知道从哪里开始。我正在寻找一个非常简单的解决方案。允许我添加用逗号分隔的标签并检索它们的东西。感谢。
答案 0 :(得分:0)
正如README file中所定义的,它就像这样简单:
考虑一个Doctrine“Post”课程:
$post = new Post();
$post->addTag('toto');
$post->addTag('tata, tutu');
$post->addTag(array('Titi', 'Gros Minet'));
$post->save();
该插件支持machine tags:
$post = new Post();
$post->addTag('iso:isbn=123456789');
$post->save();
// assume City is a taggable class
$city = new City();
$city->addTag('geo:lat=47.3456');
$city->save();