我正在关注Angular的Code School教程。我正在尝试使用ng-include包含模板。我有以下代码:
<h3 ng-include="'product-title.html'"></h3>
和我的product-title.html
{{product.name}}
<em class="pull-right">{{product.price | currency}}</em>
当我检查元素时,它会显示<!-- ngInclude: 'product-title.html' -->
问题。我是否需要运行Web服务器才能使其正常工作?
答案 0 :(得分:1)
是的,您需要从服务器运行您的应用程序。模板通过AJAX调用加载,这些调用需要来自Web服务器。
您有几个轻量级选项来运行ad-hoc静态文件服务器,例如:
simple-server
(https://github.com/balupton/simple-server)python -m SimpleHTTPServer