Exp*_* be 7 asp.net-mvc handlebars.js
我正在尝试在ASP.net MVC5项目中使用(handlebar).hbs模板,但我无法加载.hbs文件.
它发生HTTP错误404.3 - 未找到
我像这样加载,
define [
'hbs!./index'
],
Run Code Online (Sandbox Code Playgroud)
我确认路径很好. (http://local_host:1460/Scripts/js/apps/index/index.hbs)
我是否需要在某处设置.hbs扩展名?
有人知道,请指教.
Chr*_*att 14
是的,您需要告诉IIS Express如何处理.hbs.只需将以下内容添加到项目的web.config中:
<system.webServer>
...
<staticContent>
<mimeMap fileExtension=".hbs" mimeType="text/x-handlebars-template" />
</staticContent>
</system.webServer>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3276 次 |
| 最近记录: |