การอัพเดตโหนดโดยทางโปรแกรม


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 ของ Entity เพื่อทำการอัปเดต

$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.