我想在我的模块之外渲染一个表单,你能告诉我怎么样吗? 这是我的模块的位置。
C:\xampp\htdocs\project\protected\modules\employees\views\employees\_form4.php
我要呈现的表单的位置是:
C:\xampp\htdocs\project\protected\views\empLicense\_form.php
现在这是我的代码:
_form4.php
代码
<?php echo $this->renderPartial('../../../views/empLicense/_form')); ?>
答案 0 :(得分:0)
尝试做:
$this->renderPartial("//empLicense_form");
使用//
时,会在应用程序的视图路径下搜索视图。