私は時間と顧客の2つのオブジェクトを持っています。両方のオブジェクトで角2 - 結合
this.customer = Customers[]
this.hour = Hours[]
私は、CUSTOMER_IDフィールドを持っている - 今私は、顧客リストからCUSTOMER_NAMEと組み合わせる時間のリストから詳細を含む新しいリストを作成したいです。
this.hourswithcustomers[] = ?
これらの2つのオブジェクト/リストを新しいリストに追加すると、次の結果が得られます。
| hour.hour_id | hour.hour_amount | hour.customer_id | customer.customer_name |
| 1 | 500.00 | 99 | microsoft |
| 2 | 300.00 | 55 | apple |
| 3 | 200.00 | 99 | microsoft |
が、これは時間-table.component.htmlビューを構築するとの問題ですか? –
Hours [[得意先[得意先[得意先]から得意先名と結合された情報]を含む一覧を作成したい – phicon