XML到JSON转换器xml_str2json返回null?

时间:2015-08-21 05:53:57

标签: xml angularjs

当我使用以下代码时:

SELECT  s.*
FROM Student s
INNER JOIN (select sid, max(cid)
            from StudentCourse 
            group by sid
            having count(*)=1
           ) sc ON s.sid=sc.sid

jsonData为null,它似乎与我的链接的xml输出有关: http://246e90f2.tunnel.org.cn/yii2-basic/web/index.php?r=duangorder/restorder(链接可能因ngrok而无法使用)

$http.get("http://246e90f2.tunnel.org.cn/yii2-basic/web/index.php?r=duangorder/restorder").success(function (data) {
                var x2js = new X2JS();
                var jsonData = x2js.xml_str2json(data);
                console.log("debug", data);
                console.log("debug", jsonData);
            });

但我尝试过以下链接,我的xml有效: http://www.xmlvalidation.com/index.php?id=1&L=0

我想知道问题出在哪里?感谢。

0 个答案:

没有答案