今天在學習angularJS的時候,影片講到ng-include的用法。
說白了也就是把通用的html程式碼提取到一個html檔案裡面再include進去而已。
但是當我在index.html引進同一目錄下的product-title.html時,卻不顯示product-title.html裡面的內容。
angular版本是1.4.8
index.html:
<h3 ng-include="'product-title.html'"></h3>
product-title.html:
{{product.name}}
<em class="pull-right">{{product.price | currency}}</em>
看調試介面產生的是:
<!-- ngInclude: a.html -->
這麼一句話。