我在自定义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');
检索到的$文件为空。我无法弄清楚为什么。表单中的其他(隐藏)输入正在正确传递。
答案 0 :(得分:0)
修正了它。愚蠢的开发过程错误。我正在测试错误的代码。