有关解释以及如何跟踪$scope
和$attributes
的快速提问。
朋友告诉我,最好的学习方法是拿别人的代码并重写代码,弄清楚在哪里,是什么,或者为什么。到目前为止,我学到了很多东西。
需要小小的澄清! :)
事情就是这样,让我说我的foods.html代码如下:
<div id="food-navigation-panel">
<div class="something-food">
<div class="eatSomething">
<h3 class="eatMe">
{{food.$attributes.tasty_bacon}}
</h3>
<div class="edit-food__preference">
{{fruits}}
</div>
<div class="edit-food__salt" ng-show="userFavorites">
+{{vegetables}}
</div>
</div>
</div>
</div>
所以..我可以跟踪这个{{fruits}}/{{vegetables}}
$scope.fruits = healthy.get("fruits");
$scope.vegetables = healty.get("vegetables");
他们都在healthy.js
但是,{{food.$attributes.tasty_bacon}}
??
还有{{food.$attributes.tasty_bacon}}
和{{food.attributes.tasty_bacon}}
之间的差异//没有“$”。
任何帮助都会得到满足! 谢谢! 我似乎无法在我的文件中找到它。