处理JSON响应单个字符串

时间:2011-05-10 12:51:40

标签: jquery json

我在php中看起来像这样的json

json_encode('Test string');

它发回字符串我用firebug检查。 我怎么才能访问它?

 success: function(theResponse) {           

           alert()

    }  

我应该在警报内加入那个字符串?

2 个答案:

答案 0 :(得分:4)

您应该将输出格式化为有效的JSON,即使它是单个字符串:

json_encode(array("message" => "No Return Email Address Specified!"));

然后你可以在JS中访问它:

 success: function(theResponse) {           

       alert(theResponse.message)

}  

答案 1 :(得分:-1)

在响应对象上使用。$

success: function(theResponse) {           
    alert(theResponse.$)  
}