gpt4 book ai didi

javascript - 复制 $sce 创建的对象并修改其值

转载 作者:行者123 更新时间:2023-12-03 05:20:05 27 4
gpt4 key购买 nike

我有一个像这样的变量:-

tableData1[$scope.tableHeadingsConstant[0]] = $sce.trustAsHtml('<div class="header12" id="runTitle0" style="cursor: pointer;">'
+ counter++ + '</div>')

现在我想复制它,打开它,更改 div 的值,然后再次包装它。

可能吗?

最佳答案

您可以使用$sce.getTrustedHtml获取原始值。

例如:

$scope.value1 = $sce.trustAsHtml('<div>1</div>');

var unwrapped = $sce.getTrustedHtml($scope.value1);

unwrapped = unwrapped.replace('1', '2');

$scope.value2 = $sce.trustAsHtml(unwrapped);

关于javascript - 复制 $sce 创建的对象并修改其值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41427470/

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