在 Yii 框架上渲染视图文件

发布于 2024-11-25 11:48:40 字数 91 浏览 3 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

避讳 2024-12-02 11:48:40

你需要将 B 模型传递给 A 模型的视图,如果你使用 Yii 的 CRUD 生成的代码,例如在 AController 文件中,你可以将其修改为:

public function actionView() 
{
  $BModel = B::model()->findAll();

  $this->render('view',array(
    'model'=>$this->loadModel(),
    'othermodel'=>$BModel,
  ));
}

将 '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:

public function actionView() 
{
  $BModel = B::model()->findAll();

  $this->render('view',array(
    'model'=>$this->loadModel(),
    'othermodel'=>$BModel,
  ));
}

after adding the 'othermodel' into the view function, you should be able to access $othermodel in the view.php file

沫尐诺 2024-12-02 11:48:40

只需将模型 B 的视图渲染到模型 A 的视图中即可:

// This is _formA
...
$modelB = new ModelB();
echo $this->renderPartial('/modelB/_formB',array('model'=>$modelB));
...

Just do a renderPartial of the view of model B into the view of model A:

// This is _formA
...
$modelB = new ModelB();
echo $this->renderPartial('/modelB/_formB',array('model'=>$modelB));
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文