替换ng-include

时间:2017-02-16 19:40:50

标签: javascript angularjs

我有ng-include

<ng-include
  ng-if="account.description"
  src="'templates/modals/document-upload/' + vm.currentAccount.description.toLowerCase() + '.html'"
></ng-include>

效果很好。 我需要删除src(vm.currentAccount.description.toLowerCase()

字符串中的一些空格

为此,我将替换为: vm.currentAccount.description.toLowerCase().replace(/ /g, '')

我收到语法错误

  

错误:[$ parse:syntax]语法错误:令牌'/'不是表达式['templates / modals / document-upload /'+ vm.currentAccount.description.toLowerCase()的第91列的主表达式。从[/ / g,'')+'。html'开始替换(/ / g,'')。renplace('&amp;','')+'。html']

我错过了什么?我不能用正则表达式调用替换吗?

0 个答案:

没有答案