1

我正在使用 CakePHP 2.1 并尝试将文件上传到服务器。

我可以通过手动命名文件成功地将文件移动到指定目录,但它没有从视图中获取文件类型的名称:注册。

数据库表:用户

Id Auto_Increment
username
file_name

控制器:UsersController.php

public function register(){
    if ($this->request->is('post')){
        //   $this->data['User']['resume_file']['tmp_name'] = 'test.php';
        //  The above statement is working good

        if ($this->User->save($this->request->data)){
            $this->Session->setFlash('Message : ' . $this->data['User']['resume_file']['tmp_name']);
            //debug($this->data['User']['resume_file']['tmp_name']);

            // This is giving an error, while inserting
        }
    }
}

查看:users/register.php

<?php
    echo $this->Form->create('User', array('type'=>'file'));
    echo $this->Form->input('username');
    echo $this->Form->input('file_name', array('type'=>'file', 'label'=>'Upload document') );
    echo $this->Form->end('Register');
?>

错误:数据库错误

INSERT INTO `sample_db`.`users` (`file_name`, `created`) VALUES (Array, '2012-06-14 08:10:10')

我看到的是,在插入表时,在 CakePHPArray中插入了那个和错误 Array to string conversion错误,现在我如何才能在 CakePHP 中获得它的input type : file_name

否则,如果我们可以在保存之前使用以下请求语句修改数据..

$this->request->data

我试图用下面的语句来改变它

$this->data['User']['resume_file']['tmp_name'] = 'test.php';

但它不能返回相同的错误,任何想法......

4

1 回答 1

3

尝试这个:

public function register(){
    if ($this->request->is('post')){
        $filename = $this->request->data['User']['file_name']['tmp_name'];
        $this->data['User']['file_name'] = $filename;

        if ($this->User->save($this->request->data)){
            $this->Session->setFlash('Message : ' . $filename);
        }
    }
}
于 2012-06-14T08:37:48.343 回答