谁能告诉我如何在 yii 的构造函数中创建模型对象。我把代码写成 belo
<?php
class DistributorsController extends Controller
{
public $layout = '//layouts/column4';
public $defaultAction = null;
public function __construct()
{
echo '<br>Into constructor';
parent::__construct('Distributors','distributors');
}
public function actionDistributors()
{
$this->render("ChannelMask");
}
}
?>
但它只显示“进入构造函数”字符串,并且视图没有显示在我的浏览器中。