我正在使用 Yii2 基本版。似乎没有什么问题,没有显示错误消息,但是为什么我的图片没有上传?其余的(标题、内容等)通过表单上传,不过
这是我模型的规则和相关方法:
public $image;
public function init(){
Yii::$app->params['uploadPath'] = Yii::$app->basePath . '/uploads/batam/';
Yii::$app->params['uploadUrl'] = Yii::$app->urlManager->baseUrl . '/uploads/batam/';
}
public function rules()
{
return [
[['title', 'content'], 'required'],
[['content'], 'string'],
[['created_at', 'updated_at','image'], 'safe'],
[['image'], 'file','extensions'=>'jpg,png,jpeg'],
[['title'], 'string', 'max' => 255],
];
}
public function getImageFile()
{
return isset($this->image) ? Yii::$app->params['uploadPath'].$this->image : null;
}
public function uploadImage() {
$image = UploadedFile::getInstance($this, 'image');
if (empty($image)) {
return false;
}
$this->image = $image->name;
return $image;
}
这是表格
echo $form->field($model, 'image')->widget(FileInput::classname(), [
'options' => ['accept' => 'image/*'],
'pluginOptions' => [['previewFileType' => 'any']]
]);
我enctype在表格的开头也 包含了<?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]);
在这里面点if ($image !== false)控制器的一部分$image,并$path要保存,为包含一个看似正确的路径。
这是我的 $path :C:\xampp\htdocs\gbia/uploads/batam/test image 1-01.jpg并且我的 $image 也包含对象(非空)。这是我的 $image 的 var_dump :
object(yii\web\UploadedFile)#179 (5) { ["name"]=> string(19) "test image 1-01.jpg" ["tempName"]=> string(24) "C:\xampp\tmp\php3199.tmp" ["type"]=> string(10) "image/jpeg" ["size"]=> int(925184) ["error"]=> int(0) }
我认为 saveAs() 有问题,但我想不通。
萧十郎