我从后端获得了一个编码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>"
'
我曾经使用document.getElementById(“aux”)在Jquery中解码.innerHTML = $('')。html(voucher).text();
但我不知道Angular 2是否有类似的东西。
由于
答案 0 :(得分:6)
也许您需要一些指令,例如 [innerHtml] 。请使用try this示例:
<div [innerHTML]="var_string"></div>
和var_string = "<strong>example</strong>";