Yii 框架文件上传
Yii Framework File Upload
我正在尝试学习如何在 Yii 中上传图像文件。我正在使用此代码
<?php
use yii\widgets\ActiveForm;
?>
<?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]) ?>
<?= $form->field($model, 'imageFile')->fileInput() ?>
<button>Submit</button>
<?php ActiveForm::end() ?>
在 ProjectFile/views/site/upload.php 文件中。
问题在
<?= $form->field($model, 'imageFile')->fileInput() ?>
$model 给了我一个红色下划线。我看了很多例子,他们都是这样写的。
我需要做什么来阻止这个问题?
编辑:
就是在controller/SiteController.php
里面
// function for upload
public function actionUploadImage()
{
$model = new UploadImageForm();
if (Yii::$app->request->isPost) {
$model->imageFile = UploadedFile::getInstance($model, 'imageFile');
if ($model->upload()) {
// file is uploaded successfully
return;
}
}
return $this->render('upload', ['model' => $model]);
}
在models/UploadImageForm内。php
<?php
namespace app\models;
use yii\base\Model;
use yii\web\UploadedFile;
class UploadImageForm extends \yii\base\Model
{
public $imageFile;
// gives rules of how to upload picture
public function rules(){
return [
[['imageFile'], 'file', 'skipOnEmpty' => false, 'extensions' => 'png, jpg'],
];
}
// uploads picture
public function upload(){
if($this->validate()){
$this->imageFile->saveAs('uploads/' . $this->imageFile->baseName . '.' . $this->imageFile->extension);
}
}
}
- 请确保模型 attribute/field 名为“imageFile”
- 检查你的编辑器,你的编辑器上是否有红线,然后是你的编辑器相关问题
我也是这样,你的视图代码很好。我的也一样,我通过在模型函数中使用这些行使其工作:
$imageFile= UploadedFile::getInstances($model, 'imageFile')[0];
$imageFile->saveAs('uploads/' . $imageFile->baseName . '.' . $imageFile->extension);
并在控制器操作中:
$model->imageFile= UploadedFile::getInstances($model, 'imageFile')[0];
在views\upload.php中出现红色下划线是因为系统找不到$model。当 运行 时,程序会将 $model 连接到控制器。所以红色下划线对于 php 个文件不是问题。
我正在尝试学习如何在 Yii 中上传图像文件。我正在使用此代码
<?php
use yii\widgets\ActiveForm;
?>
<?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]) ?>
<?= $form->field($model, 'imageFile')->fileInput() ?>
<button>Submit</button>
<?php ActiveForm::end() ?>
在 ProjectFile/views/site/upload.php 文件中。 问题在
<?= $form->field($model, 'imageFile')->fileInput() ?>
$model 给了我一个红色下划线。我看了很多例子,他们都是这样写的。 我需要做什么来阻止这个问题?
编辑: 就是在controller/SiteController.php
里面// function for upload
public function actionUploadImage()
{
$model = new UploadImageForm();
if (Yii::$app->request->isPost) {
$model->imageFile = UploadedFile::getInstance($model, 'imageFile');
if ($model->upload()) {
// file is uploaded successfully
return;
}
}
return $this->render('upload', ['model' => $model]);
}
在models/UploadImageForm内。php
<?php
namespace app\models;
use yii\base\Model;
use yii\web\UploadedFile;
class UploadImageForm extends \yii\base\Model
{
public $imageFile;
// gives rules of how to upload picture
public function rules(){
return [
[['imageFile'], 'file', 'skipOnEmpty' => false, 'extensions' => 'png, jpg'],
];
}
// uploads picture
public function upload(){
if($this->validate()){
$this->imageFile->saveAs('uploads/' . $this->imageFile->baseName . '.' . $this->imageFile->extension);
}
}
}
- 请确保模型 attribute/field 名为“imageFile”
- 检查你的编辑器,你的编辑器上是否有红线,然后是你的编辑器相关问题
我也是这样,你的视图代码很好。我的也一样,我通过在模型函数中使用这些行使其工作:
$imageFile= UploadedFile::getInstances($model, 'imageFile')[0];
$imageFile->saveAs('uploads/' . $imageFile->baseName . '.' . $imageFile->extension);
并在控制器操作中:
$model->imageFile= UploadedFile::getInstances($model, 'imageFile')[0];
在views\upload.php中出现红色下划线是因为系统找不到$model。当 运行 时,程序会将 $model 连接到控制器。所以红色下划线对于 php 个文件不是问题。