0

希望有人可以帮助我。

我正在开发一种表单,它允许使用 CodeIgniter 和 jQuery 上传多个文件,以使用一个上传字段启用多个文件上传。

但现在我在萤火虫中得到以下错误消息:

未声明 HTML 文档的字符编码。如果文档包含 US-ASCII 范围之外的字符,则文档将在某些浏览器配置中呈现乱码。页面的字符编码必须在文档或传输协议中声明。

这意味着 HTML 文档没有被清除,但我不明白出了什么问题。

我有以下控制器:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Upload extends CI_Controller {


    function Upload(){

        parent::Controller();
        $this->load->helper(array('form', 'url'));
    }


    public function index(){

        $this->load->view('includes/header');
        $this->load->view('upload');
        $this->load->view('includes/footer');
    }

    function do_upload()
    {
        $config['upload_path'] = './uploads/'; // server directory
        $config['allowed_types'] = 'gif|jpg|png'; // by extension, will check for whether it is an image
        $config['max_size']    = '1000'; // in kb
        $config['max_width']  = '1024';
        $config['max_height']  = '768';

        $this->load->library('upload', $config);
        $this->load->library('Multi_upload');

        $files = $this->multi_upload->go_upload();

        if ( ! $files )        
        {
            $error = array('error' => $this->upload->display_errors());
            $this->load->view('upload_form', $error);
        }    
        else
        {
            $data = array('upload_data' => $files);
            $this->load->view('upload_success', $data);
        }
    }
}

所以我的第一个想法是我没有清除标题中的元标记,但事实并非如此:

<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" > 
<link href="<?=base_url();?>src/css/style.css" rel="stylesheet" type="text/css">
<script src="http://code.jquery.com/jquery-1.8.0.js"></script>
<script src="<?=base_url();?>src/js/jquery.MultiFile.js"></script>    
</head>

如果我从控制器中删除上传功能,我会收到调用未定义方法 form_open_multipart 的错误

所以我不知道为什么我会得到我首先陈述的 errmsg。有人可以帮助我吗?

提前致谢

4

1 回答 1

0

使用这个插件http://www.plupload.com/example_queuewidget.php ...它对我来说很好用很多次。

于 2012-08-14T03:39:59.117 回答