在drupal 8贡献的模块中上传文件

时间:2016-03-27 06:14:29

标签: drupal drupal-8

我正在尝试创建我的第一个drupal 8模块。在这个模块中,我必须创建一个新表单,并为用户提供此表单中的文件上载功能。这是我的表单控制器:

class Make2d extends FormBase {

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'make2d_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    if (\Drupal::currentUser()->isAnonymous()) {
        return new RedirectResponse(\Drupal::url('user.page'));
    }

    $form['sheet_size'] = array(
      '#type' => 'radios',
      '#title' => t('Sheet Size'),
      '#options' => array(t('10 X 10(2.99$)'), t('17 X 17(4.99$)'), t('28 X 28(5.99$)')),
    );
    $form['uploaded_file'] = array(
      '#type' => 'file',
      '#title' => t('Upload your file'),
      '#required' => true
    );
    $form['actions']['#type'] = 'actions';
    $form['actions']['submit'] = array(
      '#type' => 'submit',
      '#value' => $this->t('Save to Cart'),
      '#button_type' => 'primary',
    );
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    echo '<pre>';
    print_r($form_state->getvalues());
    echo '</pre>';
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
     print_r($form_state['values']);

  }

}

这是我进入表单页面时的结果:

image of my form

然后我从我的电脑中选择一个文件并提交表格。但是当我print_r我的$ form_state-&gt; getvalues()数组时,结果是这样的:

Array
(
    [sheet_size] => 0
    [uploaded_file] => 
    [submit] => Drupal\Core\StringTranslation\TranslatableMarkup Object
...

你可以看到[uploaded_file]为空。并且表单顶部有关于上传文件的错误。表单控制器和文件上传有什么问题。 感谢。

1 个答案:

答案 0 :(得分:3)

终于来了!我找到了。我们应该使用&#39; #type&#39; =&#39; managed_file&#39;这样我们就让drupal来管理上传的文件。如果我们使用&#39; #type&#39; =&#39; file&#39;我们必须通过file_save_upload()传输文件。