我有这个字符串:
this.badge = `<span class="badge">{{ notification}}</span>`
解释我所做的 {{ notification}} 表达式:
this.badge = this.$interpolate(this.badge)(this)
我现在想做的是ng-if
在span
元素中添加一个:
this.badge = `<span ng-if="notification > 0"class="badge">{{ notification}}</span>`
但是$interpolate
服务不支持这个,我怎样才能“编译” ng-if 的条件?