Asp.net MVC5,如何加载.hbs文件

时间:2014-02-04 06:18:06

标签: asp.net-mvc handlebars.js

我正在尝试在ASP.net MVC5项目中使用(handlebar).hbs模板,但我无法加载.hbs文件。

发生 HTTP错误404.3 - 未找到

我这样加载,

define [
    'hbs!./index'
],

我确认路径很好。 (http://local_host:1460/Scripts/js/apps/index/index.hbs)

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

有人知道,请指教。

1 个答案:

答案 0 :(得分:13)

是的,您需要告诉IIS Express如何处理.hbs。只需将以下内容添加到项目的web.config中:

<system.webServer>
  ...
  <staticContent>
    <mimeMap fileExtension=".hbs" mimeType="text/x-handlebars-template" />
  </staticContent>
</system.webServer>