我正在编写一个具有多个属性的组件,如果没有提供,我想要默认为一个值。
虽然我知道我可以像这样测试组件控制器中是否存在这些属性,
this.foo = angular.isUndefined(this.foo) ? 'Light Blue' : this.foo;
我想知道是否有更优雅的方式在binding
本身提供默认值
.component('myComponent', {
bindings: {
foo: '<?Light Blue'
},
或类似的东西