gpt4 book ai didi

javascript - 如何将 .cshtml 和 .html 文件与 Durandal 一起使用

转载 作者:行者123 更新时间:2023-11-28 20:35:17 25 4
gpt4 key购买 nike

我开始将 DurandalJs 框架与 asp.net MVC 结合使用。它运行完美。

但现在我需要使用 .cshtml 文件作为 durandal 的 View 。所以我添加到根web.config

<add key="webpages:Enabled" value="true" /> 

但是 DurandalJs 仍然尝试获取 .html 文件作为 View 。

所以我更正了 viewEngine.js 文件:

    return {
viewExtension: '.cshtml',
viewPlugin: 'text',

但现在 DurandalJs 要求所有 View 文件都应具有“.cshtml”扩展名。

那么我可以同时使用“.html”和“.cshtml”文件吗?

最佳答案

在 main.js 中我添加了行:

viewLocator.useConvention('viewmodels', 'ViewsProxy/GetView?name=', 'ViewsProxy/GetView?name=');

并实现了 ViewsProxyController,如下所示:

public class ViewsProxyController : Controller
{
public ActionResult GetView(string name)
{
string viewRelativePath = GetRelativePath(name);
string viewAbsolutePath = HttpContext.Server.MapPath(viewRelativePath);

if (!System.IO.File.Exists(viewAbsolutePath))
{
viewAbsolutePath = ReplaceHtmlWithCshtml(viewAbsolutePath);
if (System.IO.File.Exists(viewAbsolutePath))
{
System.Web.HttpContext.Current.Cache.SetIsHtmlView(name, false);
viewRelativePath = ReplaceHtmlWithCshtml(viewRelativePath);
return PartialView(viewRelativePath);
}
throw new FileNotFoundException();
}

FilePathResult filePathResult = new FilePathResult(viewAbsolutePath, "text/html");
return filePathResult;
}

private string ReplaceHtmlWithCshtml(string path)
{
string result = Regex.Replace(path, @"\.html$", ".cshtml");
return result;
}

private string GetRelativePath(string name)
{
string result = string.Format("{0}{1}", AppConfigManager.DurandalViewsFolder, name);
return result;
}
}

现在 durandal 应用程序可以使用 .html 和 .cshtml。

关于javascript - 如何将 .cshtml 和 .html 文件与 Durandal 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15570942/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com