我想擴展一個表單並添加一個模塊內的上傳文件字段,我可以看到文件字段就好了,但是當我提交表單時它是空的,enctype是組。Drupal 6 hook_form_FORM_ID_alter添加上傳文件字段
$form['#attributes'] = array(
'enctype' => "multipart/form-data"
);
$form['file_upload'] = array(
'#type' => 'file',
'#title' => 'Attach Image'
);
自定義表單提交鉤:
$form['#submit'][] = 'user_images_handler';
被調用,但是當我傾倒的形式,文件字段爲空,當我嘗試訪問它,它是空的爲好。