Jawaban:
Anda dapat mencoba kode ini
<?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();
node_load sudah tidak digunakan lagi di Drupal 8.x, akan dihapus sebelum Drupal 9.0. Gunakan \ Drupal \ node \ Entity \ Node :: load ().
Ref https://api.drupal.org/api/drupal/core%21modules%21node%21node.module/function/node_load/8.3.x
Anda dapat menggunakan API Entitas untuk melakukan pembaruan.
$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);
}
}
Metode lama juga berfungsi untuk saya:
$node=node_load($nid);
print_r($node->body->format);
$node->body->format='full_html';
print_r($node->body->format);
$node->save();