如何使用 feeds 模块将多个分类术语值导入到单个 term_reference 字段中?
我在 drupal 7 实例上使用 feeds 模块,并且我有一个带有 term_reference 字段的内容类型,可以选择包含多个标签。我的问题是,如何使用 feeds 模块从 CSV 文件导入多个标签?我尝试为同一目标添加更多源,在数据库上创建术语,但只有最后一个保留在创建的节点上。
I'm using the feeds module on a drupal 7 instance and I have a content type with a term_reference field with the option to include multiple tags. My question is, how can I import multiple tags from a CSV file with the feeds module? I tried by adding more sources for the same target, terms are created on the database but only the last one remains on the created nodes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Feeds 篡改模块向映射器添加爆炸功能并映射每个条目(在这种情况下,通过管道或类似的方式分隔单个字段的多个值)。
Use Feeds tamper module to add explode function to mapper and map EACH entry(in this case, separate multiple values for single field by a pipe or similar).