これは自己説明型のコードです。html 部分のコメントを確認してください。
HTML:
<div ng-app='myApp'>
<div ng-controller="MCtrl">
<!-- this should be "test:", OK -->
<test></test>
<br>
<!-- this should be "test: Hello world!", OK -->
<test custom-target="helloModel"></test>
<br>
<!-- this should be "test: Hello !", FAIL! -->
<test custom-target="emptyModel"></test>
<br>
</diV>
</div>
JS:
var myApp = angular.module('myApp',[]);
function MCtrl($scope) {
$scope.helloModel = 'world';
$scope.emptyModel = '';
}
myApp.directive('test', function() {
return {
restrict: 'E',
scope: {
customTarget: '='
},
template: '<span>test: <b ng-show="customTarget">Hello, {{customTarget}}!</b></span>'
};
});
要するに、属性custom-target
がオプションであり、欠落しているときに検出できるようにする必要があります。
更新:
現在、この解決策が見つかりました:
多分もっと良いものがあります。