我阅读Angularjs文档。在指令中,我可以使用父范围作为当前指令,而不是像这样指定范围属性
.directive('myCustomer', function() {
return {
restrict: 'E',
templateUrl: 'my-customer.html'
};
});
我可以用这种方式创建一个带有隔离范围的指令
.directive('myCustomer', function() {
return {
restrict: 'E',
scope: {
customerInfo: '=info'
},
templateUrl: 'my-customer-iso.html'
};
});
如果我想继承父作用域的所有属性并希望添加与该指令相关的一些属性。如果使用此指令但不想创建一个新的作用域而不是一个孤立的作用域,该怎么办。如何实现?< / p>