0

使用 CodeIgniter 2.1.4,我正在尝试使用 ajax 和文件上传类上传文件。我在控制器中的构造为:

public function __construct()
{
    parent::__construct();
    $this->load->helper(array('form', 'url'));
}

我在控制器中的上传功能为:

public function upload_file()
{

    $config['upload_path'] = 'upload/';
    $config['allowed_types'] = 'gif|jpg|png';
    $config['max_size'] = '100';
    $config['max_width']  = '1024';
    $config['max_height']  = '768';

    $this->load->library('upload', $config);
    if (!$this->upload->do_upload())
    {
        $error = array('error' => $this->upload->display_errors());
        $result['success'] = 1;
        $result['message'] = $error;
    }
    else
    {
        $result['success'] = 0;
        $result['message'] = "Successful Upload";
    }

    die(json_encode($result));

}

但错误出现如下:

Array

如何从数组中获取错误消息?

4

2 回答 2

1

更改此行并尝试:

$result['message'] = $error['error'];
于 2013-07-26T09:38:52.337 回答
0

发生错误时,您的结果是一个数组。您在 die 函数中使用了 json 编码。

不要在 die 函数中编码。

echo json_encode($result);
die();
于 2013-07-26T09:44:34.367 回答