我正在尝试将图像上传功能添加到我正在创建模型的视图中。我在这里尝试了许多示例代码,但我无法获得文件的完整路径。我的代码如下所示:
public function submit() {
jimport ( 'joomla.filesystem.file' );
// Check for request forgeries.
JRequest::checkToken () or jexit ( JText::_ ( 'JINVALID_TOKEN' ) );
// Initialise variables.
$app = JFactory::getApplication ();
$model = $this->getModel ( 'createaction' );
// Get the data from the form POST
$data = JRequest::getVar ( 'jform', array (), 'post', 'array' );
echo $data['image']; <-- here
$createdItem = $model->createItem ( $data );
if ($createdItem) {
$redirect = JRoute::_ ( 'index.php?option=com_akcehned&view=actions', false );
$this->setRedirect ( $redirect, "Akce byla vytvořena" );
} else {
echo "<h2>Omlouváme se, ale něco se stalo špatně</h2>";
}
return true;
}
xml中的部分文件输入:
<field
name="image"
type="file"
description="COM_AKCEHNED_FORM_DESC_CREATEACTION_IMAGE"
label="COM_AKCEHNED_FORM_LBL_CREATEACTION_IMAGE"
size="10"
accept="image/*" />
在我尝试回显文件文件输入的地方,我得到的只是名称(image_name.jpg 等),但我需要完整路径,对吗?我看到了 ['tmp_name'] 的示例,但它对我不起作用。我试过这样的代码:
$jinput = $app->input;
$files = $jinput->files->get('jform');
$file = $files['image'];
echo $file;
echo $file['tmp_name'];
但这对我也不起作用。我只是得到空值。有人可以给我工作代码块,让我从其他输入和完整路径获取数据以供上传吗?它适用于 joomla 2.5,谢谢