标签: angularjs angularjs-filter
如果你看这样的话: {{data | customFilter:true}}除非您查看过滤器的实现,否则您不会知道true代表什么。
{{data | customFilter:true}}
true
是否有更可读的方式传递该参数,例如customerFilter:{showLabel:true}?
customerFilter:{showLabel:true}
感谢。