MVC单独区域项目 - 无法查找视图

时间:2016-08-25 21:50:54

标签: asp.net-mvc razor asp.net-mvc-areas

我正在为我的主要MVC项目中的区域设置单独的项目。我按照指南进行了操作:

https://stackoverflow.com/a/12912161/155110

我在启动期间设置了断点,可以看到RazorGeneratorMvcStart正在被击中,以及设置路径的AreaRegistration。安装了RazorGenerator.Mvc,我的cshtml页面上的自定义工具设置为使用它。当我在启动主项目后访问区域URL时,我可以看到它在单独的Area项目中命中控制器,但是,我找不到它来查找视图。我得到以下一个巨大的位置列表:

  

[InvalidOperationException:视图'索引'或者它的主人不是   找到或没有视图引擎支持搜索的位置。下列   搜索地点:

STARAreaRegistration.cs

using System.Web.Mvc;

namespace AreaSTAR.Areas.STAR
{
    public class STARAreaRegistration : AreaRegistration 
    {
        public override string AreaName 
        {
            get 
            {
                return "STAR";
            }
        }

        public override void RegisterArea(AreaRegistrationContext context) 
        {
            context.MapRoute(
                "STAR_default",
                "STAR/{controller}/{action}/{id}",
                new { action = "Index", id = UrlParameter.Optional }
            );
        }
    }
}

RazorGeneratorMvcStart.cs

using System.Web;
using System.Web.Mvc;
using System.Web.WebPages;
using RazorGenerator.Mvc;

[assembly: WebActivatorEx.PostApplicationStartMethod(typeof(AreaSTAR.RazorGeneratorMvcStart), "Start")]

namespace AreaSTAR {
    public static class RazorGeneratorMvcStart {
        public static void Start() {
            var engine = new PrecompiledMvcEngine(typeof(RazorGeneratorMvcStart).Assembly) {
                UsePhysicalViewsIfNewer = HttpContext.Current.Request.IsLocal
            };

            ViewEngines.Engines.Insert(0, engine);

            // StartPage lookups are done by WebPages. 
            VirtualPathFactoryManager.RegisterVirtualPathFactory(engine);
        }
    }
}

区/ STAR /控制器/ DefaultController.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace AreaSTAR.Areas.STAR.Controllers
{
    public class DefaultController : Controller
    {
        // GET: STAR/Default
        public ActionResult Index()
        {
            return View();
        }
    }
}

区/ STAR /查看/默认值/ Index.cshtml:

@* Generator: MvcView *@

@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>View1</title>
</head>
<body>
    <div>
        Index view
    </div>
</body>
</html>

在查看未找到查看错误时访问的网址:http://localhost:53992/STAR/Default/Index

1 个答案:

答案 0 :(得分:1)

这是因为我不小心安装了RazorEngine.Generator扩展并将自定义工具设置为RazorEngineGenerator,而不是安装Razer Generator扩展并将自定义工具设置为RazorGenerator。