gpt4 book ai didi

javascript - Angular.js 检测双向属性的存在

转载 作者:行者123 更新时间:2023-11-28 02:07:46 25 4
gpt4 key购买 nike

这是不言自明的代码,请检查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>'
};
});

http://jsfiddle.net/kMybm/34/

简而言之,我需要属性 custom-target 是可选的,并且能够检测到它何时丢失。

更新:

目前找到了这个解决方案:

http://jsfiddle.net/kMybm/35/

也许有更好的。

最佳答案

第三个示例中的

b 标记根本不显示,因为上面有 ngShow,当 customTarget 为空字符串时,该标记的计算结果为 false。

关于javascript - Angular.js 检测双向属性的存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17525972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com