我是指令的范围属性
当我show
用作 attr 名称时,它工作正常。
<span ng-repeat="field in fields">
<field-pill field="field" show="true"></field-pill>
</span>
应用程序.js
angular.module('app',[]);
angular.module('app')
.controller('AppCtrl', function($scope){
$scope.fields = [1,2,3,4];
});
angular.module('app')
.directive('fieldPill', function () {
return {
template: '<div class="pill">{{field}}:{{show}}--<span ng-show="show">x</span></div>',
restrict: 'E',
scope:{
field: "=",
"show": "="
}
};
});
(见这个 plunkr http://plnkr.co/edit/AcqmxeCerCOtGaw9dq9t?p=preview)
x-show
但是当我用作属性名称时,该指令根本不会加载布尔数据。
<span ng-repeat="field in fields">
<field-pill field="field" x-show="true"></field-pill>
</span>
应用程序.js
angular.module('app',[]);
angular.module('app')
.controller('AppCtrl', function($scope){
$scope.fields = [1,2,3,4];
});
angular.module('app')
.directive('fieldPill', function () {
return {
template: '<div class="pill">{{field}}:{{xShow}}--<span ng-show="xShow">x</span></div>',
restrict: 'E',
scope:{
field: "=",
xShow: "="
}
};
});
谁能解释为什么?
(请参阅此 plunkr 以获取x-show
http://plnkr.co/edit/2txoY3VaShH6WggnugcE?p=preview的代码)