我使用XMLHttpRequest将文件发送到后端,并返回json格式信息,如何获取每个值?
码
this.resdata = xhr.response;
console.log("this.resdata2: " + this.resdata);
console.log("this.resdata[0]: " + this.resdata[0]);
console.log("this.resdata[1]: " + this.resdata[1]);
和Chrome DevTools消息
this.resdata2: {"result":123,"gpsvalue":246}
home.component.ts:112 this.resdata[0]: {
home.component.ts:113 this.resdata[1]: "
如何获得resdata2 result和gpsvalue的值并在我的页面上显示?
答案 0 :(得分:0)
由于Response是JSON对象
使用this.resdata.result
// to get result value
使用this.resdata.gpsvalue
// to get gpsvalue value