การแนบไฟล์โดยทางโปรแกรม


25

ฉันสร้างประเภทเนื้อหา "คลังภาพ" และเพิ่มสองฟิลด์: "photo" และ "document" ฉันใช้รหัสต่อไปนี้เพื่ออัพโหลดไฟล์ในช่อง "document":

$file = file_save_upload('document', array(
    'file_validate_extensions' => array('txt doc'), // Validate extensions.
));

// If the file passed validation:
if ($file) {
// Move the file, into the Drupal file system
if ($file = file_move($file, 'public://')) {
  $file->status = FILE_STATUS_PERMANENT;
 // $file->file_display = 1;
  $file = file_save($file);

} else {
  $output = t('Failed to write the uploaded file the site\'s file folder.');
}       
 } else {
$output = t('No file was uploaded.');
 }

ฉันแนบไฟล์นี้ไปยังโหนดโดยใช้รหัสต่อไปนี้:

$customNode->field_document[$customNode->language][0] = (array)$file;

เมื่อฉันเรียกnode_submit()ใช้ฟังก์ชันฉันได้รับข้อผิดพลาดต่อไปนี้:

การละเมิดข้อ จำกัด ด้านความสมบูรณ์: 1048 คอลัมน์ 'field_document_display' ต้องไม่เป็นค่าว่าง

มีใครรู้บ้างว่าฉันทำผิดอะไร?

คำตอบ:


29

ฉันมักจะไม่โยน(array)$fileเส้นเพราะจริงๆสิ่งเดียวที่ต้องการข้อมูลฟิลด์คือ fid คำอธิบายและการแสดง ดังนั้นฉันมักจะทำต่อไปนี้:

$node->field_image[LANGUAGE_NONE][] = array(
  'fid' => $file->fid,
  'display' => 1,
  'description' => '',
);
node_save( $node );

วิธีนี้ถ้าจำเป็นต้องใช้จอแสดงผลฉันไม่ได้รับข้อผิดพลาด แต่นั่นเป็นเพียงฉัน ...


ทำให้ฉันสับสนว่าทำไมมันไม่มีค่าเริ่มต้น
32i

คุณไม่เห็นค่าเริ่มต้นเนื่องจากเป็นการกำหนดโดยตรง
Lester Peabody

7

โซลูชันของคุณเกือบจะถูกต้อง อย่างไรก็ตามในบางกรณีจำเป็นต้องให้คุณตั้งค่าการแสดงผลและคำอธิบายด้วย

ในการทำให้โค้ดทำงานให้ทำดังนี้

$file = file_save_upload('document', array(
    'file_validate_extensions' => array('txt doc'), // Validate extensions.
));

// If the file passed validation:
if ($file) {
// Move the file, into the Drupal file system
if ($file = file_move($file, 'public://')) {
  $file->status = FILE_STATUS_PERMANENT;
 // $file->file_display = 1;
  $file = file_save($file);
  //set the extra values needed to make node_save work
  $file->display = 1;
  $file->description = "";
} else {
  $output = t('Failed to write the uploaded file the site\'s file folder.');
}       
 } else {
$output = t('No file was uploaded.');
 }

2

ฉันคิดว่ากุญแจนี่คือเส้นเหล่านั้น

$file->display = 1;
$file->description = "";

ตามที่ Eric van Eldik ชี้ให้เห็น ฉันกำลังดิ้นรนกับปัญหาเดียวกันแน่นอนเพิ่มเพียง

$file->display = 1;

ไม่ได้ช่วย แต่

$file->description = "";

ทำวันของฉัน


0

สำหรับการเพิ่มไฟล์โดยทางโปรแกรมไปยังโหนดคุณสามารถใช้

$managed = TRUE; // Whether or not to create a Drupal file record
$filename = 'public://imdb-cast-' . time() . '.jpg';
$iamge_file = system_retrieve_file($url,$filename , $managed);
if($iamge_file){
$file = file_load(db_query('SELECT MAX(fid) FROM {file_managed}')->fetchField());
$node->field_image['und'][0] = (array) $file;
  }
}

0

เพียงวางโซลูชันของฉันที่นี่เช่นกันฉันต้องสร้างโหนดใหม่และอัปโหลดรูปภาพแบบเป็นโปรแกรม

$filepath = variable_get('file_public_path') . '/xmas_banner.jpg';
$file_temp = file_get_contents($filepath);
$file_temp = file_save_data($file_temp, file_default_scheme() . '://' .'xmas_banner_nl.jpg', FILE_EXISTS_RENAME);

$node = new stdClass();
$node->type = 'carousel'; // custom content type
$node->title = 'XMAS NL';
$node->field_banner_image['und'][0] = (array) $file_temp;
$node->uid = 1;
$node->status = 0;
$node->active = 0;
$node->promote = 0;
node_save($node);

0

แนบหลายไฟล์โดยทางโปรแกรมใน Drupal 8:

foreach ($fileIds as $fid) {
  $node->field_images[] = [
    'target_id' => $fid,
    'alt' => 'ALT TEXT',
    'title' => 'TITLE TEXT'
  ];
}
$node->save();
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.