Joomla 3文件上传前端 - 文件未上传

时间:2018-03-27 18:51:49

标签: joomla3.0

我在自定义J3前端组件中有以下表单:

<form method="post" id="upload-photo-form" enctype="multipart/form-data">
<input type="file" name="upload-photo-file" accept="image/*"/>

我可以选择表格中的文件.jpg。然后我尝试检索组件中的文件数据:

$app = JFactory::getApplication ();
$file = $app->input->files->get('upload-photo-file');

检索到的$文件为空。我无法弄清楚为什么。表单中的其他(隐藏)输入正在正确传递。

1 个答案:

答案 0 :(得分:0)

修正了它。愚蠢的开发过程错误。我正在测试错误的代码。