我正在尝试在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