어휘에 많은 용어 (~ 200)를 추가하려고하는데 Drupal 8 용으로 업데이트 된 가져 오기 모듈을 찾을 수 없으며 Drupal 7 에서이 작업을 수행하는 기능이 존재하지 않는 것 같습니다 Drupal 8. 그래서, 이것을하는 사람이 나를 올바른 방향으로 안내 할 수 있습니까?
entity_create
주석에서 제안한 대로이 코드로으로 시도했습니다 .
$term_create = entity_create('taxonomy_term', array('name' => 'test', 'vocabulary_name' => 'client'));
하지만이 오류가 발생했습니다 :
Drupal\Core\Entity\EntityStorageException: Missing bundle for entity type taxonomy_term in Drupal\Core\Entity\FieldableEntityStorageControllerBase->create() (line 65 of core/lib/Drupal/Core/Entity/FieldableEntityStorageControllerBase.php).
어떤 아이디어?
$term_create = entity_create('taxonomy_term', array('name' => 'test', 'vocabulary_name' => 'client'));
오류가 발생했습니다 Drupal\Core\Entity\EntityStorageException: Missing bundle for entity type taxonomy_term in Drupal\Core\Entity\FieldableEntityStorageControllerBase->create() (line 65 of core/lib/Drupal/Core/Entity/FieldableEntityStorageControllerBase.php).
-어떤 아이디어?
vid
대신 사용해보십시오 vocabulary_name
. 열이 아직 vid
있는 것처럼 보이지만 taxonomy_term_data
현재 아이디 대신 Vocab 이름입니다.
entity_create()