我正在使用jquery和angularJS(糟糕的做法,但我必须)。当使用jquery mobile导航时,在dom dosen中添加页面会触发角度,因为它只在第一页上加载。
1.HTML:
<html ng-app="aki" ng-controller="akicontrollers">
...
<section data-role="page">
<ul id="gridaccom" data-role="listview" >
<li ng-repeat="object in barList" id="lista" >
{{object.Name}}
</li>
</ul>
<a href="2.html">LINK</a>
</section>
...
2.HTML
<section data-role="page">
<ul id="gridaccom1" data-role="listview" >
<li ng-repeat="object in barList" id="lista" >
{{object.Name}}
</li>
</ul>
</section>
Ng重复在1.html中工作但是当插入2.html到dom时我得到&#34; {{object.Name}}&#34; 我的问题是:是否有可能重新启动&#34; angular还是让它重新扫描html文档并在DOM中插入编译页面?
提前致谢。