프로그래밍 방식으로 노드 업데이트


19

다음 코드를 사용하여 노드를 만들 수 있습니다.

$node = \Drupal::entityTypeManager()->getStorage('node')->create($array);

그러나 노드 ID가 있으면 어떻게 노드를 편집 할 수 있습니까?


무엇을 수정 하시겠습니까? 어느 분야?
Yusef

답변:


23

이 코드를 사용해보십시오

<?php
use Drupal\node\Entity\Node;

$node = Node::load($nid);
//set value for field
$node->body->value = 'body';
$node->body->format = 'full_html';
//field tag
$node->field_tags = [1];
//field image
$field_image = array(
    'target_id' => $fileID,
    'alt' => "My 'alt'",
    'title' => "My 'title'",
);
$node->field_image = $field_image;

//save to update node
$node->save();

이 답변은 좋은 방법이 아닙니다, Ivan 답변은 좋은 답변입니다
Kevin

6
$node = \Drupal::entityTypeManager()->getStorage('node')->load($nid);

예를 들어 사용자 정의 필드 수정 : es. field_mycustomfield ???
BOES

또는 $node = \Drupal::entityManager()->getStorage('node')->load($nid);
JF Kiwad


1

엔티티의 API를 사용하여 업데이트를 수행 할 수 있습니다.

$node = Node::load($id);

if ($node instanceof NodeInterface) {
  try {
    $node->set('title', 'My Title');
    $node->set('field_textfield', 'My textfield value');
    $node->save();
  }
  catch (\Exception $e) {
    watchdog_exception('myerrorid', $e);
  }
}

0

오래된 방법도 저에게 효과적입니다.

$node=node_load($nid);
print_r($node->body->format);
$node->body->format='full_html';
print_r($node->body->format);
$node->save();
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.