我遇到ng-scope问题。
<div class="col-sm-12" ng-repeat="suggestions1 in suggestions">
<a href="{{suggestions1.link}}">
<div class="notific">
{{suggestions1.title}}
</div>
</a>
</div>
问题是我的格式搞乱了。当我检查元素时,我发现了这一点。
<div class="col-sm-12 ng-scope" ng-repeat="suggestions1 in suggestions">
<a href="text.html#?id=27">
<div class="notific">
<h7 class="ng-binding">Test </h7>
</div>
</a>
</div>
div的大小自动设置为386x104。我检查了整个css文件,但未定义。另外,我删除了所有css元素,但无济于事。
当我在Chrome浏览器中检查ng-scope的详细信息时,发现 clientHeight :104 在那里定义。
如何预防?我正在使用Bootstrap和Angular 1。