在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在asp.net mvc中可以轻松使用Html.RenderAction创建局部视图,但在asp.net core中不支持@html.Action()方法,转而使用ViewComponent,本篇博客介绍如何在.net core中使用ViewComponent视图组件 添加GiftViewComponent类,继承ViewComponent类在InvokeAsync/Invoke方法中定义逻辑,并返回IViewComponentResult。 using Microsoft.AspNetCore.Mvc; namespace Test.Models { public class GiftViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } } } Tips:根据约定,类名结尾必须以 ViewComponent 结尾 添加Default.cshtml视图文件在Views文件夹下的Shared文件中添加Components文件夹,在Components文件夹中添加Gift文件夹,在Gift文件夹下添加Default.cshtml视图文件(必须在此处添加Default.cshtml文件) 视图组件默认名称为Default,可默认命名为Default.cshtml;或可指定视图名称,在调用View方法返回时,将名称一同返回。 在Default.cshtml视图文件中添加局部视图代码 引入视图组件在需要引入视图组件的地方添加如下代码: @await Component.InvokeAsync("Gift") 本篇博客只是简单介绍ViewComponent视图组件的使用,ViewComponent的功能十分强大,如有需要可查看官网教程: End! |
请发表评论