今天在学习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 -->
这么一句话。
怪我咯2017-05-15 16:59:57
Is there a problem with the path? Check to see if they are of the same level. product-title.html
和index.html
淡淡烟草味2017-05-15 16:59:57
The value of ng-include must be a variable, not a file name. Assign the file path to a variable, then ng-include='variable name'