dqoqnmb163241 2016-03-16 11:37
浏览 138
已采纳

在MVC主页中使用数据库数据

Suppose i'd like to display title of latest articles. for particular Views , we use controllers to handle that. but for common section of pages like header or footer , How to display data(latest articles) from database (within MVC rules) ? Note: I use php

Please check my approach:

app class:

<?php
class app{
    public static function appLoader($app){
        include 'apps/'.$app.'/'.$app.'.class.php';
        new $app;
    }
}

test.class.php :

class test extends app{
    function __CONSTRUCT(){
        return 'Hello World';
    }
}

footer.php:

<footer>
<?php echo app::appLoader("test") // returns 'Hello World' ?>
</footer>
  • 写回答

1条回答 默认 最新

  • drslez4322 2016-03-16 12:10
    关注

    Note: This is w.r.t .Net MVC

    If you are following MVC pattern - then there's a concept of "Partial Views" - which is just like user controls, and it can be placed in the main page.

    Partial view is also an html page which might just div, no html body head etc because it will be rendered inside main html page

    You might need to verify the syntax for Partial Views with PHP. The concept remains same for MVC.

    There are various ways to display partial views.

    One popular way is the one where Partial view is called by its action method - which will ultimately display the result(the partial view).

    The Action method will return a "_Footer" Partial view - where you can put your HTML Code of displaying the data from DB(the latest articles).

    The partial view must bind from the list of articles. which is popularly known as Strong Type Binding in .Net - which is nothing but mapping the view(HTML page) to a specific class to display the data from that class.

    For your reference the below example can be referred(in .Net):

    Create a partial view for footer(_Footer) and call it using Action Method(RenderAction - .Net). This action method can fetch the data from database and display in the partial view(_Footer)

    The call to the action method be like from the view(html page):

        @{ Html.RenderAction("Index", "Footer", new { Area = "Common", id}); }
    

    And the Controller and action method like:

        public class FooterController : Controller
        {
            public ActionResult Index(int id)
            {
                var vm = new FooterViewModel
                {
                    Id = id
                };
    
                return this.PartialView("_Footer", vm);
            }
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里