实际上,我尝试删除输出中的html不必要元素,例如" , '等...

这是我的脚本标签中使用的代码

scope.categorywithouthtml = function () {
        return sce.trustAsHtml(scope.directories.dirurl);
        return sce.trustAsHtml(scope.directories.text);
    };


这是我在dirurl和text中删除的代码

<span" ng-bind-html="categorywithouthtml()" "{{dir.dirurl}}"></span>
        <a href= "{{dir.dirurl}}"   class="button1"  rel="{{dir.text}}">


我用跨度将其删除,我没有错过任何东西。

<a href= "{{dir.dirurl}}"   class="button1"  rel="{{dir.text}}">


代替{{dir.dirurl}}的输出不应带有“,。”等。

最佳答案

试试这个代码。

scope.categorywithouthtml = function () {
return sce.trustAsHtml(scope.directories.dirurl);
};


然后只给出这段代码,但是一个条件是一次只能获得一个值,循环值是行不通的。

<span ng-bind-html="categorywithouthtml()"></span>

关于javascript - 使用Json删除asp.net中不需要的标志,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25053099/

10-12 02:36