在yii2中预选一个活跃的放射学家

时间:2016-10-13 05:03:31

标签: php yii yii2

我在我的表单中使用了一个activeradiolist,我想选择第一个项目,但是这个失败了

这是放射学家:

 <?=Html::activeRadioList($model, is_normal, [1 => 'Customer truck', 2 => 'Transporter truck '])?>

我试过了:

  <?=
   $model->is_normal = 1;
Html::activeRadioList($model, is_normal, [1 => 'Customer truck', 2 => 'Transporter truck '])?>

以上隐藏了放射学家并在屏幕上显示1。

我该如何解决?

1 个答案:

答案 0 :(得分:1)

你正在回应1

<?=<?php echo的缩写。

将代码更改为:

<?php
$model->is_normal = 1;
echo Html::activeRadioList($model, 'is_normal', [1 => 'Customer truck', 2 => 'Transporter truck ']);
?>