Yii framwork renderPartial 的用法
<?php echo $this->renderPartial(‘/default/add_news’);?>
<?php echo $this->renderPartial(‘//public/footer’);?>
absolute view within a module: the view name starts with a single slash ‘/’.
absolute view within the application: the view name starts with double slashes ‘//’.
当前module下的view文件使用/
外层views下的view文件用//