我有一个包含 4 个项目的解决方案:
AS.Core.Common
(参考:数据,网络)AS.Core.Controllers
(参考:Common、Data、Web)AS.Core.Data
AS.Core.Web
(参考:数据)
在我的控制器中,我返回视图的任何地方:
return View("~/Views/Home/Index.cshtml");
它以红色突出显示,我得到一个"Cannot resolve view '~/Views/Home/Index.cshtml'"
.
所有四个项目都成功构建,但是当我按 F5 时,我得到以下信息:
“/”应用程序中的服务器错误。
无法找到该资源。
说明:HTTP 404。您要查找的资源(或其依赖项之一)可能已被删除、名称已更改或暂时不可用。请查看以下 URL 并确保其拼写正确。
请求的网址:/
版本信息:Microsoft .NET Framework 版本:4.0.30319;ASP.NET 版本:4.0.30319.17929
如何让我的控制器看到我的视图以便正确解析?我假设这就是我得到 404 响应的原因。
我的Global.asax.cs
样子是这样的:
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
// Register the default hubs route: ~/signalr
RouteTable.Routes.MapHubs();
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
}
我的RouteConfig.cs
(我添加了命名空间,但似乎没有帮助)
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
namespaces: new[] { "AS.Core.Controllers" },
defaults: new
{
controller = "Home",
action = "Index",
id = UrlParameter.Optional
});
}
这是我的HomeController.cs
public class HomeController : Controller
{
public ActionResult Index()
{
//return View("~/Views/Home/Index.cshtml");
return View();
}
}