文章目录
报错内容如下:
An unhandled exception occurred while processing the request.
InvalidOperationException: The view ‘PrivacyDemo’ was not found. The following locations were searched:
/Views/Home/PrivacyDemo.cshtml
/Views/Shared/PrivacyDemo.cshtml
Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable originalLocations)
分析step1 :
创建了PrivacyDemo.cshtml 文件,报错中也提到似乎识别不到
分析step2 :
HomeController.cs 中也有对应的PrivacyDemo 这个Action
最终解决:
将PrivacyDemo.cshtml 文件的属性由【无】改为【内容】即可