我正在尝试将数据绑定到角度模板。但我面临以下问题。


我使用$ templateCache来检索模板,但我无法在模板中找到数据。

 
 $ templateCache.get('q1.index.html');



 现在,我我也试图做 $ compile($ templateCache.get('q1.index.html'));
但是我得到错误:[jqLite:nosel] http:// errors。 angularjs.org/1.3.14/jqLite/nosel
错误。
有人可以让我知道我做错了什么吗?我该如何解决呢。

答案 0 :(得分:0)
您需要将此格式用于<script>
代码
<script type="text/ng-template" id="templateId.html">
<p>This is the content of the template</p>
</script>
然后您可以使用$templateCache
$templateCache.get('templateId.html')
或通过ng-include
<div ng-include="'templateId.html'"></div>