我想使用角度js {{}}
显示引导弹出框,即数据绑定
我的popover看起来像,
<a href="#" class="noUnderline" data-trigger="focus" data-toggle="popover" data-placement="left" data-content = "{{helpSrv.helpInfo{{['singleFil'+field.displayName + 'MobTooltipId']}}}}" >
但它从角度js给出错误。
评估时,它应该看起来像data-content="{{helpSrv.helpInfo['singleFilArchitectureMobTooltipId']}}"
helpSrv
是helpInfo
看起来像的服务
this.helpInfo = {
'singleFilArchitectureMobTooltipId' = 'some text'
}
那个&#39;一些文字&#39;最终会成为我的data-content
。
当我使用data-content="helpSrv.helpinfo['singleFilArchitectureMobTooltipId']"
时,它会评估为some text
。但我希望它是动态的。
怎么做??