多次上传杂货店不起作用



我需要上传多个图像,我读了很多文档,这些文档不起作用,我看到了:

链接到问题:set_field_upload-如何在codeigniter上的grocery_crud库中自定义多图像上传?

我做了他们所说的所有内容,当我在视图中称呼他们的控制器为" Multiuploader"时,一切都很好,但是当我在自己的控制器中使用时,我的控制器不起作用。它将图像保存到数据库中和文件夹中,但是我看不到表单中的任何内容,例如添加图像或列表中的链接,即使我之前使用" Multiuploader"保存在同一表中。<<<<<<<<br>

如果您可以帮助我,我会很高兴。预先感谢。

这是我的控制器。

public function Test() {
            $this->crud = new Grocery_CRUD_Multiuploader();
            $this->crud->set_table('multi_uploader_gallery');
            $this->crud->set_subject('Document');
            $this->crud->fields("title", "my_pictures", "my_files", "my_mail_attachments");
            $this->crud->columns("title", "my_pictures", "my_files", "my_mail_attachments");
$config = array(
                /* Destination directory */
                "path_to_directory" => 'assets/test',
                /* Allowed upload type */
                "allowed_types" => 'gif|jpeg|jpg|png',
                /* Show allowed file types while editing ? */
                "show_allowed_types" => true,
                /* No file text */
                "no_file_text" => 'No Pictures',
                /* enable full path or not for anchor during list state */
                "enable_full_path" => false,
                /* Download button will appear during read state */
                "enable_download_button" => true,
                /* One can restrict this button for specific types... */
                "download_allowed" => 'jpg'
            );
            $this->crud->new_multi_upload("my_pictures", $config);
            $output = $this->crud->render();
            $data['contents'] = 'contents';
            $data = array_merge($data, (array) $output); 
            $this->load->view('template', $data);
        }



在视图(add(

当我使用视图时,示例表不显示任何错误,但是当我使用表时,它显示了以下内容:

在我的视图中带有视图(列表(

的错误

我发现错误,我不会在路径的尽头放置/,并给我所有这些问题

"path_to_directory" => 'assets/test/',

至于先前的错误,我进行了不同的测试更改表的名称,它们只是消失了。

我也遇到了此错误,它是由多上载列中旧(未序列化(数据引起的。您必须序列化或清空字段。

相关内容

  • 没有找到相关文章

最新更新