我使用angularjs http从服务器获取xml,我使用节点xml2json插件将其转换为json对象。我正确地返回了文档但看起来不对,因为我在xml文档中有html标记。如果有人知道如何正确转换返回的json那将是很好的,
var x2js = new X2JS();
var dom = x2js.xml_str2json(chr);
<my_data>
<p class="justify">
El
<strong>
<em>
Content Tour 2015
</em>
</strong>
<strong>
Distributors
</strong>
</p>
</my_data>
我仍然想要计算出这个计算机编程的东西,我只编写了几个月,所以请原谅我的错误代码和一些愚蠢的问题,但如果有人知道如何解析json或xml到html,我将非常感激。
答案 0 :(得分:0)
// Add your javascript here
$(function(){
$("body").append('<notas> <copete>Editorial</copete> <titulo>grande</titulo> <seccion>Opinion</seccion> <cuerpo> <p class="rtejustify"> El <strong> <em> Foro Infochannel Tour 2015 </em> </strong> concluyó en días pasados en la hermosa ciudad de Oaxaca, Oaxaca. El escenario para concluir el recorrido no pudo ser mejor. </p> </cuerpo> </notas>')
});
检查plunkr -