NopCommerce 源码研究(二)

本文深入探讨NopCommerce电商平台的页面渲染过程,以@Html.Widget('home_page_top')为例,揭示其背后的代码逻辑。从 HomePage 的 Index.cshtml 开始,通过 HtmlExtensions.cs 和 WidgetController.cs 分析,解释了如何查找并执行对应的WidgetController视图。接着,详细阐述了WidgetByZone如何确定控制器和方法,并以NivoSlider插件为例,展示了如何通过WidgetsNivoSliderController.cs将内容渲染到页面。同时,文章还提及了Razor的@helper语法以及WidgetService.cs在获取和处理widgets中的作用。
摘要由CSDN通过智能技术生成

今天具体研究一下页面是如何渲染的。从首页看开始,拿\Presentation\Nop.Web\Views\Home\Index.cshtml中的@Html.Widget("home_page_top")这句来学习。

它对应的后台代码是这句:

路径:\Presentation\Nop.Web.Framework\HtmlExtensions.cs

        public static MvcHtmlString Widget(this HtmlHelper helper, string widgetZone, object additionalData = null)
        {
            return helper.Action("WidgetsByZone", "Widget", new { widgetZone = widgetZone, additionalData = additionalData });
        }

以上代码会调用:

路径:\Presentation\Nop.Web\Controllers\WidgetController.cs

        [ChildActionOnly]
        public ActionResult WidgetsByZone(string widgetZone, object additionalData = null)
        {
            var cacheKey = string.Format(ModelCacheEventConsumer.WIDGET_MODEL_KEY, _storeContext.CurrentStore.Id, widgetZone);
            var cacheModel = _cacheManager.Get(cacheKey, () =>
            {
                //model
                var model = new List<RenderWidgetModel>();

                var widgets = _widgetService.LoadActiveWidgetsByWidgetZone(widgetZone, _storeContext.CurrentStore.Id);
                foreach (var widget in widgets)
                {
                    var widgetModel = new RenderWidgetModel();

                    string actionName;
                    string controllerName;
                    RouteValueDictionary routeValues;
                    widget.GetDisplayWidgetRoute(widgetZone, out actionName, out controllerName, out routeValues);
                    widgetModel.ActionName = actionName;
                    widgetModel.ControllerName = controllerName;
                    widgetModel.RouteValues = routeValues;

                    model.Add(widgetModel);
                }
                return model;
            });

            //no data?
            if (cacheModel.Count == 0)
                return Content("");

            //"RouteValues
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值