可以有 3 个视图吗?

发布于 2024-12-23 00:25:42 字数 410 浏览 0 评论 0原文

我有一个模型,它返回用户信息的控制器数组(他的帖子、信息(姓名、年龄等)等)。然后我有一个视图文件,其中包含大量 html(表格等),它代表用户。我也需要在其他地方显示完全相同的用户个人资料。问题是,在用户配置文件之前我需要添加一些 div。那么,在一个控制器中这样做可以吗:

$this->loadView("HeaderOfParticularPage"); //it contains just divs
$this->loadView("UserProfile", $user); //$user is array of arrays of information of user
$this->loadView("SomeOtherInfoINeedForFooter");

可以吗?或者这是不好的做法?谢谢。

I have a model which returns to controller arrays of user's information (his posts, information(name,age etc.) and etc). Then I have one view file which has lots of html (tables and etc.) and it represents the user. I need to show the exactly the same user's profile somewhere else too. Problem is, that before user profile I need to add a few divs. So, is it ok to do like this in one controller:

$this->loadView("HeaderOfParticularPage"); //it contains just divs
$this->loadView("UserProfile", $user); //$user is array of arrays of information of user
$this->loadView("SomeOtherInfoINeedForFooter");

Is it ok? Or it's bad practise? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

呆头 2024-12-30 00:25:42

像这样模块化和重用视图是完全可以接受的,因为每个视图都有自己不同的目的。 MVC Web 应用程序不限于每个页面的单个视图(或单个控制器或单个模型)。

你甚至可以说你正在做的是服务器端包含的“MVC 版本”。

It's perfectly acceptable to modularize and reuse views like that, since each serves a different purpose of its own. MVC web apps aren't restricted to a single view (or a single controller, or a single model) per page.

You could even say that what you're doing is the "MVC version" of server-side includes.

友欢 2024-12-30 00:25:42

是的,没关系。

如果有什么不同的话,像你这样分开你的观点被认为是好的做法。这允许采用更加模块化的方法,允许您在网站或 Web 应用程序的不同页面中一遍又一遍地重用视图元素。

Yes, it is fine.

If anything it is considered good practice to split your views up like you have. This allows for a far more modular approach allowing you to reuse view elements over and over again within the different pages of your website or web application.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文