Сортировать элемент в новый массив с веткой - PullRequest
0 голосов
/ 22 января 2020

После зацикливания ставок веткой я получаю эти элементы, мне нужно составить таблицу tr для тех, у кого такая же комбинация. Как я могу создать новый массив с веткой, где элементы сгруппированы по одной и той же комбинации?

ReportBetEntity^ {#1486 ▼
  -id: 116596140
  -raceId: 4620200121103
  -bookmakerId: 102
  -betType: ReportBetTypeEntity^ {#1487 ▶}
  -betSubType: "ordre"
  -combination: "12-4-13-8-14"
  -odds: 7858.0
}
ReportBetEntity^ {#1488 ▼
  -id: 116596142
  -raceId: 4620200121103
  -bookmakerId: 102
  -betType: ReportBetTypeEntity^ {#1489 ▶}
  -betSubType: "ordre"
  -combination: "12-13-4-8-14"
  -odds: 7858.0
}
ReportBetEntity^ {#1559 ▼
   -id: 116597169
  -raceId: 4620200121103
  -bookmakerId: 26
  -betType: ReportBetTypeEntity^ {#1560 ▶}
  -betSubType: "ordre"
  -combination: "12-4-13-8-14"
  -odds: 12733.0
}
ReportBetEntity^ {#1561 ▼
  -id: 116597171
  -raceId: 4620200121103
  -bookmakerId: 26
  -betType: ReportBetTypeEntity^ {#1562 ▶}
  -betSubType: "ordre"
  -combination: "12-13-4-8-14"
  -odds: 12733.0
}
ReportBetEntity^ {#1490 ▼
  -id: 116596141
  -raceId: 4620200121103
  -bookmakerId: 102
  -betType: ReportBetTypeEntity^ {#1491 ▶}
  -betSubType: "desordre"
  -combination: "12-4-13-8-14"
  -odds: 211.0
}
ReportBetEntity^ {#1565 ▼
  -id: 116597170
  -raceId: 4620200121103
  -bookmakerId: 26
  -betType: ReportBetTypeEntity^ {#1566 ▶}
  -betSubType: "desordre"
  -combination: "12-4-13-8-14"
  -odds: 263.6
}
ReportBetEntity^ {#1492 ▼
   -id: 116596143
  -raceId: 4620200121103
  -bookmakerId: 102
  -betType: ReportBetTypeEntity^ {#1493 ▶}
  -betSubType: "bonus4"
  -combination: "12-4-13-8"
  -odds: 7.0
}
 ReportBetEntity^ {#1569 ▼
  -id: 116597172
  -raceId: 4620200121103
  -bookmakerId: 26
  -betType: ReportBetTypeEntity^ {#1570 ▶}
  -betSubType: "bonus4"
  -combination: "12-4-13-8"
  -odds: 6.2
 }
ReportBetEntity^ {#1494 ▼
  -id: 116596144
  -raceId: 4620200121103
  -bookmakerId: 102
  -betType: ReportBetTypeEntity^ {#1495 ▶}
  -betSubType: "bonus3"
  -combination: "12-4-13"
  -odds: 3.2
 }
ReportBetEntity^ {#1573 ▼
   -id: 116597173
  -raceId: 4620200121103
  -bookmakerId: 26
  -betType: ReportBetTypeEntity^ {#1574 ▶}
  -betSubType: "bonus3"
  -combination: "12-4-13"
  -odds: 3.1
}

У меня нет доступа к полученным данным, поэтому я должен сделать это с помощью ветки, я знаю, что может объединить элемент с фильтром слияния, но я не знаю, как действовать в этом случае

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...