我有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']
我错过了什么?我不能用正则表达式调用替换吗?