【问题标题】:file upload with cakephp maldicore admin plugin使用 cakephp maldicore 管理插件上传文件
【发布时间】:2013-07-03 12:19:26
【问题描述】:

我正在使用 Maldicore 管理插件,但文件上传有问题。

基本上可以归结为:

在控制器调用 $this->request->data 只会得到以下数据

Array
(
    [Spice] => Array
        (
            [id] => 1
            [name] => Black Pepper Seeds
            [image] => black pepper seeds.jpg
        )

)

当大多数在线资源列出 ['tmp_name']、['error'] 等属性时,我在这里遗漏了什么?

提前致谢!

【问题讨论】:

    标签: php cakephp file-upload


    【解决方案1】:

    我很确定您没有将表单设置为多部分/文件表单,在 CakePHP 中您可以这样做:

    $this->Form->create('Model', array('type' => 'file'));
    

    如果您没有使用正确的表单类型,文件通常会像您粘贴的那样显示。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2013-08-15
      • 2023-03-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-03-23
      相关资源
      最近更新 更多