0

我在我的数据库中创建了一个没有表的文件上传验证规则,所以我所做的只是使用 CFormModel 对其进行了扩展。

这是我的代码:

控制器

public function actionMaterials($pid)
{
    $projectMaterialFile = new ProjectMaterialFile;
    $this->render('project_materials',array(
        'projectMaterialFile'=>$projectMaterialFile,
    ));
}

查看(项目材料)

<div id="exportMaterialContent">
    <h4 style="text-align:left;">Export Material Document</h4>
    <?php echo CHtml::form($this->createUrl("project/export"),'post',array('enctype'=>'multipart/form-data')); ?>
    <?php echo CHtml::activeHiddenField( $projectMaterialFile,'idProject',array('value'=>$projectModel->idProject) ); ?>
    <?php echo CHtml::activeFileField($projectMaterialFile, 'document'); ?>
    <?php echo CHtml::submitButton("Export"); ?>
    <?php echo CHtml::endForm(); ?>
</div>

控制器 - 导出(视图中的表单提交后)

public function actionExport()
{
    $model = new ProjectMaterialFile;
    $model->attributes = $_POST['ProjectMaterialFile'];
    if( $model->validate() ) {
        $model->document = CUploadedFile::getInstance($model,'document');
        $model->document->saveAs(Yii::getPathOfAlias('webroot')."/material_document/".$model->document->name);
        echo "correct";
    } else {
        echo "Invalid!";
    }
}

模型

class ProjectMaterialFile extends CFormModel
{
    public $document;
    public $idProject;

    public function rules()
    {
        return array(
            array('document','file','types'=>'csv'),
            array('document', 'required'),
        );
    }

    public function attributeLabels()
    {
        return array(
            'document' => 'Project Material Document',
            'idProject' => 'Project ID',
        );
    }
}

所以我在这里所做的是它总是运行到我控制器的 elseactionExport() 即使我尝试echo $model->validate();,它也不会打印任何东西,这就是它总是转到 else 语句的原因。

您的帮助将不胜感激,当然,奖励!

谢谢!:)

4

1 回答 1

1

尝试更改模型中的验证规则,如下所示

public function rules()
{
   return array(
      array('document','file','types'=>'csv'),
      array('document', 'required'),
      array('document', 'length', 'max'=>200),
      array('idProject', 'length', 'max'=>200),
      array('document, idProject', 'safe'),
      );
}

现在改变你的控制器部分如下

$model = new ProjectMaterialFile;
$model->attributes = $_POST['ProjectMaterialFile'];
$model->document = CUploadedFile::getInstance($model,'document');

if( $model->validate() )
{
   $model->document->saveAs(Yii::getPathOfAlias('webroot')
                ."/material_document/".$model->document->name);
    echo "Correct";
}
else
{
    echo "Invalid!";
}

示例链接:http ://www.yiiframework.com/wiki/2/how-to-upload-a-file-using-a-model/

于 2012-09-28T16:43:11.727 回答