yii在一个视图中只能创建一个表单吗? [ 2.0 版本 ]
Cannot use yii\widgets\ActiveForm as ActiveForm because the name is already in use
我定义个两个ActiveForm,结果报了上面的错误。
<?php
use yii\widgets\ActiveForm;
?>
<?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]) ?>
<?= $form->field($model_upload, 'imageFile')->fileInput() ?>
<button>Submit</button>
<?php ActiveForm::end() ?>
共 3 个回答
-
dingjj2010 回答于 2016-03-21 09:51 举报
应该是你的父页已经有引用了。。
你可以在本页删除use yii\widgets\ActiveForm; 或者 改成use yii\widgets\ActiveForm as aform; 然后用aform试试
tw1996
注册时间:2016-03-13
最后登录:2020-03-25
在线时长:37小时2分
最后登录:2020-03-25
在线时长:37小时2分
- 粉丝3
- 金钱0
- 威望0
- 积分370