我有一个代码:
<?=Html::activeHiddenInput($model, $attribute, $inputParams); ?>
<?=Html::fileInput($id, null, ['id' => $id, 'style' => 'display: none']); ?>
我需要限制扩展来上传表单中的文件,例如:
True: jpeg, png, jpg
False: *
如何在Yii2中执行此操作?
答案 0 :(得分:2)
在您的模型规则中
[['file'], 'file', 'extensions' => 'gif, jpg'],
更多http://stuff.cebe.cc/yii2docs/yii-validators-filevalidator.html