我的json
@Component({
selector: 'my-app',
template: `<h1>Hello {{name}}</h1>
<label>
<input type="checkbox" [(ngModel)]="showSection1" >
Is Shown
</label>
<p *ngIf="showSection1">
This should be shown or hidden on click of the button.
</p>
`
})
export class AppComponent { name = 'Angular'; }
我想得到跌倒值和哇值?
我正在尝试这样但不起作用。
var json = {"data":[{"DT_RowId":"row_25","sip":{"fall":"0","whoa":"1"}}],"options":[],"files":[]}
答案 0 :(得分:0)
你试图跳过几步。你需要更准确地导航对象的“路径”,这一点应该从这个演示中显而易见。
var json = '{ "data":[ { "DT_RowId":"row_25", "sip":{ "fall":"0", "whoa":"1" } } ], "options":[], "files":[]}'
var obj = JSON.parse(json);
console.log(obj);
console.log(obj.data);
console.log(obj.data[0]);
console.log(obj.data[0].sip);
console.log(obj.data[0].sip.fall);