解析JSON会产生“意外的令牌o”错误

我在解析简单的JSON字符串时遇到问题。我已经在JSONLint上检查了它们,它表明它们是有效的。但是当我尝试使用JSON.parsejQuery替代方法解析它们时,出现了以下错误unexpected

token o

<!doctype HTML>

<html>

<head>

</head>

<body>

<script type="text/javascript">

var cur_ques_details ={"ques_id":15,"ques_title":"jlkjlkjlkjljl"};

var ques_list = JSON.parse(cur_ques_details);

document.write(ques_list['ques_title']);

</script>

</body>

</html>

注意:我正在使用json_encode()PHP 对字符串进行编码。

回答:

您的数据已经是一个对象。无需解析。javascript解释器已经为您解析了它。

var cur_ques_details ={"ques_id":15,"ques_title":"jlkjlkjlkjljl"};

document.write(cur_ques_details['ques_title']);

以上是 解析JSON会产生“意外的令牌o”错误 的全部内容, 来源链接: utcz.com/qa/402296.html

回到顶部