绑定完请刷新页面
取消
刷新

分享好友

×
取消 复制
ASP.NET Core view component 运行时报错
2019-08-29 10:05:28

ASP.NET Core view component 运行时报错:"A view component must return a non-null value"

在一个 asp.net core 3.0 preview 5 中实现了一个 view component ,运行时出现下面的错误:

System.InvalidOperationException: A view component must return a non-null value.
   at Microsoft.AspNetCore.Mvc.ViewComponents.DefaultViewComponentInvoker.CoerceToViewComponentResult(Object value)

InvokeAsync 方法的实现如下:

public async Task<IViewComponentResult> InvokeAsync(AggSiteModel model)
{
    if (model == null) return null;

    model.Posts ??= await GetPostsAsync(model);
    if (model.Posts == null) return null;

    return View("PostList", model.Posts);
}

请问如何解决?



分享好友

分享这个小栈给你的朋友们,一起进步吧。

应用开发
创建时间:2020-06-17 15:31:04
应用软件开发是指使用程序语言C#、java、 c++、vb等语言编写,主要是用于商业、生活应用的软件的开发。
展开
订阅须知

• 所有用户可根据关注领域订阅专区或所有专区

• 付费订阅:虚拟交易,一经交易不退款;若特殊情况,可3日内客服咨询

• 专区发布评论属默认订阅所评论专区(除付费小栈外)

技术专家

查看更多
  • 栈栈
    专家
戳我,来吐槽~