gpt4 book ai didi

jquery - 处理 JSON 响应单个字符串

转载 作者:行者123 更新时间:2023-11-30 23:42:13 27 4
gpt4 key购买 nike

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

json_encode('Test string');

它发送回我用 firebug 检查过的字符串。我怎样才能访问它?

 success: function(theResponse) {           

alert()

}

我应该在警报中放入什么来获取该字符串?

最佳答案

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

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

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

 success: function(theResponse) {           

alert(theResponse.message)

}

关于jquery - 处理 JSON 响应单个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5950297/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com