我想知道指令之间scope
和model
指令内的区别。
以下 2 个指令的行为完全相同:
angular.module( 'exampleApp', [] )
.directive( 'exampleDirective1', function() {
return {
restrict: 'E',
scope: { // using scope here
info: '='
},
template: '<div><span>{{ info }}<span> <input ng-model="info"></div>'
};
} )
.directive( 'exampleDirective2', function() {
return {
restrict: 'E',
model: { // using model here
info: '='
},
template: '<div><span>{{ info }}<span> <input ng-model="info"></div>'
};
} );
我错过了什么吗?