Note of Angular

Notes For AngularJs Scope

In Angular, we have isolated scope and nonIsolated scope, the difference is the _proto_, that is to say, we can call parent scope through prototype way in nonisolate scope, other, we can not do this.

  1. Bindings in Component,

Keep onething in mind, Bindings equals to map objects the propery of controller, not the scope. the controller object is an property of scope.

原文地址:https://www.cnblogs.com/kongshu-612/p/6000339.html