1

我保存了一个节点,其中包含由服务填充的图像。我用 drupal_write_record 写入图像并且图片已经出现在节点中。但是当 - 在脚本结束时 - 我调用 node_save 时,图像再次消失。

我的代码:

  $file_drupal_path= $filedata['location'];
  $file = new stdClass();
  $file->filename = $filedata['name'];
  $file->filepath = $file_drupal_path; 
  $file->filemime = $filedata['mime'];
  $file->filesize = filesize($file_drupal_path);
  $file->filesource = $filedata['name'];

  $file->uid = 1;
  $file->status = FILE_STATUS_PERMANENT;
  $file->timestamp = time();  
  $file->list = 1;

  // fid is populated by drupal_write_record
  drupal_write_record('files', $file);

  $imageData = field_file_load($file->fid, TRUE);
  return $imageData;

和 node_save

function transport_service_save($node) {
    $node = (object) ($node);
    $node->promote = 1;
    node_save(node_submit($node));
    return print_r( $node , TRUE );
}

在节点的 cck 图像字段中,也有未设置值的键。

4

1 回答 1

1

安德烈亚斯,

有完全相同的问题。

如此处所述使用drupal_execute()立即解决了问题:

// Save the node, updated or new
// Get the node object as an array the node_form can use
$values = (array)$node;

// Save the node (this is like pushing the submit button on the node edit form)
drupal_execute('abc_node_form', $values, $node);

资料来源: http ://www.drupalisms.com/gregory-go/blog/use-drupalexecute-instead-of-nodesave-to-save-a-node-programmatically

但是一个公平的警告:它在前几轮中运行起来就像一个魅力,但现在我得到了大量的错误类型:

warning: call_user_func_array() [function.call-user-func-array]: 
First argument is expected to be a valid callback, 'node_form' was given in ...

看不出有什么变化。我所做的只是调用保存了几次的页面来测试它。

最后(希望!)编辑此回复。似乎需要包含包含 node_form 的 node.module 文件,因此添加以下内容:

module_load_include('', 'node', 'node.pages.inc');

在您的代码中(如 in hook_init())将起到作用。

在这里工作,现在我的节点保存完整的图像。

于 2011-06-06T14:54:06.780 回答