gpt4 book ai didi

javascript - angularjs如何在html中转义 “${variable}”?

转载 作者:行者123 更新时间:2023-11-27 23:16:04 25 4
gpt4 key购买 nike

我想向 div 元素显示类似 ${date} 的字符串:

<div>please use the ${date} as the substitute tag to the name</div>

内容将显示为:

please use the ${date} as the substitute tag to the name.

但是浏览器把${date}当成了javascript变量,那么如何在angularjs中对${date}字符串进行转义呢?

最佳答案

在你的 Controller 中创建一个方法将字符串返回给模板:

specialText() {
return '${date}';
}

然后在你的模板中:

<div>please use the {{vm.specialText()}} as the substitute tag to the name</div>

关于javascript - angularjs如何在html中转义 “${variable}”?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43086171/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com