在Angular2中获取Json中的数组

时间:2018-03-20 22:37:36

标签: angular angular2-services

我正在获取Json对象,其中包含保存json对象的数组。

{
    "wpDetails": [
        {
            "inputPath": null,
            "outputPath": null,
            "drive": null,
            "spaceRequired": "12"
        },
        {
            "inputPath": null,
            "outputPath": null,
            "drive": null,
            "spaceRequired": "12"
        }
    ]
}

我想访问 inputPath 。使用Angular2。下面是我的代码,但没有运气。

this.
serverService.getWpDetails(this.selectedServer,this.selectedWpName)
.subscribe(
        (response:Response)=> {

          const responseJsonDetails=response.json().wpDetails;
          console.log("msg is:" + responseJsonDetails );
          for(const wpDetail of responseJsonDetails){
            console.log("inside for loop" + wpDetail);

          }

        },
        (error)=>console.log(error)

      );

我在控制台上获取[对象对象]。任何人都可以帮助我。

0 个答案:

没有答案