需求是这样的:在上传文件的同时让选择文件所属的分类。
1.Model 中:一个 uploadForm 继承 model 。字段 public $reportFiles; public $category;
2.controller 中是这样。 $model = new UploadForm(); $cat=Category::getAllCats();
if ($model->load(Yii::$app->request->post()) ) {}
可是能获取到文件,获取到的 category 为空。 ["category"]=> NULL ["_errors":"yii\base\Model":private]=> NULL
3.view 中:
field($model,'category')->dropDownList($cat)?>
这是什么问题啊,困扰了一天了。取不到分类的值。
1
cheng12308 OP 1
|
2
cheng12308 OP 被降权了,没人看的着,郁闷。
|
3
young 2017-04-20 11:15:14 +08:00
试一下, 在 model 文件中 rules 方法里设置一下这个 category 字段的 validator
|