1

我已经尝试了大约 2 个小时,但没有任何改变。

我有一个模型Users,我想把它的_form.php观点传递给views/site/index.php这样的:

<?php echo $this->renderPartial('/users/_form', array('model'=>Users::$model)); ?>

结果:布局消失了,表单没有显示。

有什么帮助吗?并提前感谢。

4

1 回答 1

4
 <?php echo $this->renderPartial('/users/_form', array('model'=>Users::$model)); ?>

应该读

 <?php $this->renderPartial('/users/_form', array('model'=>$model)); ?>

假设你已经实例化$model了。如果不

 <?php $this->renderPartial('/users/_form', array('model'=>new User)); ?>

应该管用。

于 2013-01-24T21:35:11.240 回答