在 Yii 框架上渲染视图文件
我有 2 个模型,假设 A 和 B 包含两种不同的形式。我想在模型 A 的视图页面上显示表单 B 的内容。那么如何在 A 上呈现 B 的内容。对此的任何帮助将非常感激。
I have 2 models suppose A and B which contain two separate forms. I want to show the content of form B on the view page of model A. So how to render the content of B on A. Any help on this will be highly appreciable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要将 B 模型传递给 A 模型的视图,如果你使用 Yii 的 CRUD 生成的代码,例如在 AController 文件中,你可以将其修改为:
将 'othermodel' 添加到视图函数后,您应该能够在 view.php 文件中访问 $othermodel
You need to pass the B model to the view of the A model, if you're using the code generated by Yii's CRUD for example in the AController file you can modify it into this:
after adding the 'othermodel' into the view function, you should be able to access $othermodel in the view.php file
只需将模型 B 的视图渲染到模型 A 的视图中即可:
Just do a renderPartial of the view of model B into the view of model A: