asp.net-mvc – Asp.net MVC5,如何加载.hbs文件

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – Asp.net MVC5,如何加载.hbs文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在ASP.net MVC5项目中使用(handlebar).hbs模板,但我无法加载.hbs文件.

它发生HTTP错误404.3 – 未找到

我像这样加载,

define [
    'hbs!./index'
],

我确认路径很好. (HTTP:// local_host:1460 /脚本/ JS /应用/索引/ index.hbs)

我是否需要在某处设置.hbs扩展名?

有人知道,请指教.

解决方法

是的,您需要告诉IIS Express如何处理.hbs.只需将以下内容添加到项目的web.config中:
<system.webServer>
  ...
  <staticContent>
    <mimeMap fileExtension=".hbs" mimeType="text/x-handlebars-template" />
  </staticContent>
</system.webServer>
原文链接:https://www.f2er.com/aspnet/247056.html

猜你在找的asp.Net相关文章