我正在尝试解析包含JSON的响应文本。我想知道是否有任何方法可以在javascript中使用正则表达式从开头{
开始解析JSON到结束}
是否有更简单的方法来执行此操作?
这是我的js:
function getStatus(){
$.ajax({
url:"../lib/getstatus.php",
type: "POST",
data: {
name: name
},
dataType: "text",
success:function(result){
console.log(result);
}
});
}
以下是我的回复文字示例。
HTTP/1.1 200 OK
Server: nginx/1.6.2
Date: Tue, 20 Mar 2018 00:28:38 GMT
Content-Type: application/json
Transfer-Encoding: chunked
Connection: keep-alive
{"myJson: response", //need to start parsing from here and ignore the top returned headers.
...
}