标签:
http://stackoverflow.com/questions/14876112/difference-between-the-observe-and-watch-methods
https://docs.angularjs.org/api/ng/type/$compile.directive.Attributes
$observe()是Attributes 对象的一个方法,它只能用于observe/watch一个DOM attribute的value change.它只在directive内部被调用。当你需要监察、侦听一个包含interpolation的attribute的DOM时,你需要使用$observe()函数(比如:{{attrValue}}
$watch被用于监察、侦听一个model/scope属性,比如:scope.$watch(attrs.attr1)...
注意:angular normalize string
angular attrs.$observe和$scope.$watch的区别
标签:
原文地址:http://www.cnblogs.com/kidsitcn/p/4784205.html