将分类引用字段迁移到实体引用

Migrate taxonomy reference field into entity reference

提问人:Fadi Assaad 提问时间:1/31/2019 更新时间:2/19/2019 访问量:1090

问:

我正在尝试将附加到field_collection实体类型(Drupal 7)的分类引用字段迁移到附加到段落实体类型(Drupal 8.6)的实体引用字段。

虽然这似乎是迁移时要做的基本任务之一,但我找不到关于如何做到这一点的明确参考。

id: d7_field_collection_field_name
label: My Field name
migration_tags:
  - Drupal 7
migration_group: migrate_drupal_7

source:
  plugin: d7_custom_source_plugin
process:
  field_title:
    plugin: get
    source: field_title
  field_job_category:
    plugin: get
    source: field_job_category
destination:
  plugin: 'entity_reference_revisions:paragraph'
  default_bundle: my_paragraphs_bundle
migration_dependencies:
  required:
    - upgrade_d7_field
    - upgrade_d7_node_type
    - upgrade_d7_field_collection_type
    - upgrade_d7_field_instance

迁移过程说明如下:https://www.mtech-llc.com/blog/ada-hernandez/migration-field-collection-d7-paragraphs-node-d8

所以,field_job_category不起作用。我在进程插件中尝试了很多方法,但没有运气。例如,我使用了:

  field_job_category:
    plugin: migration_lookup
    migration: upgrade_d7_taxonomy_term_job_categories
    source: term_id

然后尝试使用源代码,因为我使用的是 Drupal 8.6

  field_job_category:
    plugin: migration_lookup
    migration: upgrade_d7_taxonomy_term_job_categories
    sources:
      upgrade_d7_taxonomy_term_job_categories:
        - term_id

我相信这是field_job_category下的配置错误,但我还想不通。

非常感谢您的帮助!

drupal-8 配置文件 分类段落 entityreference

评论


答:

0赞 Fadi Assaad 2/19/2019 #1

这已通过做两件事得到解决。

首先,为我的字段使用sub_process流程插件。

field_job_category:
  -
    plugin: sub_process
    source: field_job_category
    process:
      target_id: tid

最后,实现 hook_migrate_prepare_row() 以提供具有正确结构的数据,以供上述sub_process使用

$row->setSourceProperty($field_name, $new_value);

$new_value 应该是

Array
(
  [0] => Array
    (
        [tid] => Term ID
    )
 )

希望这有帮助!干杯。