gpt4 book ai didi

javascript - AngularJS 中的一种 HTML 绑定(bind)方式

转载 作者:行者123 更新时间:2023-12-03 11:50:52 24 4
gpt4 key购买 nike

我曾经使用 ng-bind (或简写 {{}})将一些文本绑定(bind)到跨度中。

<p>Preview: <span>formattedPrice(price)</span></p>

如您所见,我在绑定(bind)时调用了 formattedPrice 函数。现在我意识到我应该能够在这个范围中添加一些 HTML。我尝试了 ng-bind-html="formattedPrice(price)" 但这似乎并没有解决问题。

有没有办法可以在不创建另一个作用域变量的情况下做到这一点?

最佳答案

您应该使用过滤器。

像这样:

<p>Preview: <span>{{price | formatted}}</span></p>

示例过滤器:

angular.module('myFilters', []).filter('formatted', function() {
return function(input) {
//return your formatted price here
}
}

关于javascript - AngularJS 中的一种 HTML 绑定(bind)方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25844588/

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