为什么不是我的eval将json字符串转换为对象

时间:2010-01-22 06:12:30

标签: javascript json

当我执行eval函数时,它不会将我的json响应变成一个对象,它只会破坏我的代码。我试过用prototype.js和JSON2.js解析无济于事请解释我在这里做错了什么?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>Inventory Management</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <title>Untitled Document</title>
        <script src="call.js" type="text/javascript"></script>
        <script src="prototype.js" type="text/javascript"></script>
    </head>
    <body>
    <div>
            <p id="resp" >new</p>
        <script type="text/javascript">



    var xhr;
    var results=getPlants(xhr,results);
    var plants;


    function getPlants(xhr,results){
        try {
            xhr=new XMLHttpRequest();   
            }catch(microsoft){
            try{
                xhr=new ActiveXObject("Msxml2.XMLHTTP");                
                }catch(othermicrosoft){
                    try{
                xhr = new ActiveXObject("Microsoft.XMLHTTP");               
                    }catch(failed){
                        xhr=false;
                        alert("ajax not supported");
                    }
                }               
        }   
        xhr.onreadystatechange= function () {
        if(xhr.readyState==4 && xhr.status==200) {
        results = xhr.responseText;                     
        }    
}
    xhr.open("GET","db_interactions.php",true);     
    xhr.send(null);
    alert("sent");
 return results;

}

plants = eval('('+results+')');

document.write(typeof(plants));
        </script>

    </div>

    </body>
</html>

1 个答案:

答案 0 :(得分:3)

您正在发出异步请求。这意味着即使数据还没有准备好,该函数也会返回。但是,当调用getPlants时,您的调用假定JSON响应已准备就绪。这显然使results未定义,因为您没有等待它。

点亮你的

plants = eval('('+results+')');
document.write(typeof(plants));

xhr.onreadystatechange函数内部使其工作,或以同步方式打开连接

xhr.open("GET","db_interactions.php",false);

顺便说一句,不要使用eval来解析JSON ,因为代码可能会被恶意注入。改为使用JSON解析器。