- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经创建了一个 View 组件。
public class PreviewCVComponent : ViewComponent
{
..
public async Task<IViewComponentResult> InvokeAsync(int id)
{
return View();
}
}
我在 views/shared/components 中添加了一个名为 PreviewCV 的文件夹。在该文件夹下,我添加了一个名为 Default.cshtml 的 View 。
从另一个 View 调用该组件。它位于 views/CV 下,名称为 CV.cshtml。
我正在尝试使用
调用组件@await Component.InvokeAsync("PreviewCV", new { id = -1 })
这导致:
InvalidOperationException: A view component named 'PreviewCV" could not be found. A view component must be a public non-abstract class, not contain any generic parameters, and either be decorated with 'ViewComponentAttribute' or have a class name ending with the 'ViewComponent' suffix. A view component must not be decorated with 'NonViewComponentAttribute'.
我正在使用 .net 核心。
最佳答案
--在模型文件夹中
文件名:TestViewComponent.cs
--在TestViewComponent类中
[ViewComponent(Name = "TestViewComponent")] //Solution
public class TestViewComponent: ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}
将ViewComponent
放在后缀中解决问题。
关于c# - 找不到名为 'PreviewCV' 的 View 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55250565/
我已经创建了一个 View 组件。 public class PreviewCVComponent : ViewComponent { .. public async Task Invoke
我是一名优秀的程序员,十分优秀!