私はJSONデータを取得しています。自分のプロパティにJSONデータを格納しています。角度2でテーブル見出しを動的に設定する方法は?
this.ResultData_search=data.json().extras.ResultData
this.ResultData=[
{
"First_name": "xx",
"Email": "xxxx",
"Phone": "xxx",
"countryCode": "+91",
"order_datetime": "xxx",
"status": 11,
"DeviceType": 3,
"orderId": "59081a04c9ff6852a49dd32a",
"orderseqId": "E00002347",
"orderType": 1,
"CustomerID": "xx",
"pickAddress": "xx",
"dropAddress": "xx",
"pickLatitude": 17.4369414,
"dropLatitude": 17.43673,
"dropLongitude": 78.36710900000003,
"paymentType": 2,
"itemDescription": "",
"receiverName": "uday",
"receiverPhone": "xx",
"itemName": "sanjay",
"deliverycharge": "199",
"bookingType": 1
}
}]
すべてのキーを表の見出しとデータとしてテーブルの行に設定する必要があります。どれplunkerは私にとって非常に参考になりますDynamically loading columns and data in to table in Angular 2
:私は、以下のリンクhttps://stackoverflow.com/questions/40713580/angular2-table-with-dynamic-rows-and-columns
リンク2を参照しました。
あなたはこれまでに何を試しましたか? – mxr7350
私は1本のパイプを作成しましたが、テーブルの見出しは – harish