在typeScript angular 2中解码html

时间:2016-11-29 00:10:27

标签: html angular ionic2

我从后端获得了一个编码html,但我无法解码它。

我尝试使用decodeURIComponent和decodeURI。

foo

I got from server='
"<table style="background-color: white;">
    <tbody>
        <tr>
            <td>
                    <div id="voucher">
                        <table>
                            <tr>
                                <td colspan="1" class="normal-left">ID:</td>
                                <td colspan="3" class="normal-left">ce203c7c804c4f258947adf3d63b2d7d</td>
                            </tr>
                        </table>
                    </div>
                </div>
            </td>
        </tr>
    </tbody>
</table>"
' 

And this is the result

我曾经使用document.getElementById(“aux”)在Jquery中解码.innerHTML = $('')。html(voucher).text();

但我不知道Angular 2是否有类似的东西。

由于

1 个答案:

答案 0 :(得分:6)

也许您需要一些指令,例如 [innerHtml] 。请使用try this示例:

 <div [innerHTML]="var_string"></div>

var_string = "<strong>example</strong>";