CakePHP - 表单不提交文件字段

时间:2011-08-22 22:36:27

标签: php cakephp file-upload meio-upload

我正在尝试将图片文件上传到我的应用程序,用户可以选择通过上传图片来更改他的个人资料图片,但是在提交表单时,它不会随表单一起提交文件。

我正在使用Meio Upload进行文件上传,我将粘贴视图控制器操作和模型:

查看:

<div class="prepend-1 span-8">
<?php
    echo $this->Form->create('Fonyker', array('action' => 'edit', 'class' => 'span-8', 'type' => 'file'));
?>
    <div class="span-3">
      <label for="FonykerImage" class="span-3 last">Profile Image</label>
      <div class="span-4 preview" style="border-color:black; border:dotted 2px; height:80px; width:80px">
        <img src="<?php echo $this->data['Fonyker']['image_url'];?>" style="width:80px;height:80px;"/>
      </div>
    </div>
    </br>
<?php
    echo $this->Form->input('image_url', array(
      'div' => array(
        'class' => 'span-5 last'
      ),
      'label' => array(
        'text' => 'Upload an image'
      ),
      'type' => 'file'
    ));

    echo $this->Form->input('username', array(
      'div' => array(
        'class' => 'span-8'
      ),
      'class' => 'input-text long',
      'label' => array(
        'text' => 'Username'
      ),
      'onsubmit' => 'return false;'
    ));

    echo $this->Form->input('email', array(
      'div' => array(
        'class' => 'span-8'
      ),
      'class' => 'input-text long',
      'label' => array(
        'text' => 'Email'
      ),
      'onsubmit' => 'return false;'
    ));

    echo $this->Form->input('name', array(
      'div' => array(
        'class' => 'span-8'
      ),
      'class' => 'input-text long',
      'label' => array(
        'text' => 'Name'
      ),
      'onsubmit' => 'return false;'
    ));

?>
        <div class="span-8 required">
            <label for="FonykerBirthdate">Birthdate</label>
            <input id="FonykerBirthdate" type="text" onsubmit="return false;" name="data[Fonyker][birthdate]" class="datepicker input-text long" enabled="false" value="<?php echo $this->data['Fonyker']['birthdate']; ?>">
        </div>
<?php

    $options = array('M' => 'M', 'F' => 'F');
    $attributes = array(
      'empty' => 'Gender',
      'class' => 'input-combo',
      'label' =>  array(
        'text' => 'Birthdate'
      )
    );

    echo $this->Form->select('gender', $options, NULL, $attributes);

    echo $this->Form->submit('Save', array(
      'class' => 'button medium blue',
      'id' => 'save-account-button'
    ));

?>
    <input id="FonykerId" type="hidden" name="data[Fonyker][id]" value="<?php echo $this->data['Fonyker']['id']?>">
<?php
    echo $this->Form->end();
?>
<div id="account-message" class="span-8" style="display: none;"></div>
</div>

动作:

function edit() {
      $this->layout = 'ajax';
      $this->autoRender = false;
      $this->Fonyker->recursive = -1;
      $response = null;

      if (!empty($this->data)) {
        $this->Fonyker->read(null, $this->data['Fonyker']['id']);
        pr($this->data);

        if ($this->Fonyker->save($this->data)) {
          $response = json_encode(array('ok' => true, 'msg' => 'Account information updated'));
        } else {
          $response = json_encode(array('ok' => false, 'msg' => 'Failed to update account'));
        }
      }

模型行为代码:

var $actsAs = array(
    'MeioUpload' => array( 
      'image_url' => array(
        'dir' => 'img/profile_pictures',
        'create_directory' => true,
        'allowed_mime' => array('image/gif', 'image/jpeg', 'image/pjpeg', 'image/png'),
        'allowed_ext' => array('.jpg', '.jpeg', '.png', '.gif','.JPG'),
      )
    )
  ); 

上传在我的应用程序的另一部分工作正常,但在这种情况下不是,任何想法?

      echo $response;
    }

2 个答案:

答案 0 :(得分:2)

问题是我通过AJAX提交表单,当我序列化表单时,文件没有包含在内,我是web dev的新手,所以我还不太了解所有内容的工作情况,但是看来你无法通过AJAX提交文件。

因此,我修改了我的代码,使其无需AJAX请求,只需通过POST正常提交表单即可。

答案 1 :(得分:1)

以下是我要检查的几件事:

在您的控制器功能中,在保存之前,您可以检查$this->data['image_url']的内容并查看error字段是否为非零。错误代码已枚举in the PHP manual,可能会为您提供问题的线索。

您也可以在没有MIME类型限制的情况下对其进行测试。 MeioUpload可能(?)依赖于浏览器报告的MIME类型,而这几乎肯定是基于文件扩展名 - 通常没关系,但你永远不知道。我也知道浏览器(Safari,我认为?)将所有内容报告为application/octet-stream。 (您也可以使用PHP的FileInfo,它根据文件内容确定MIME类型。)

无论如何,要开始。