我有一个团队列表。每个团队都有一份指定的竞争对手名单。
每个团队都应该有独特的竞争对手。
我应该如何获得在VueJS中分配的所有参赛者名单?
"teams": [
{
"id": 25,
"name": "t1",
"competitors": [
{
"id": 1,
"short_id" : 1,
...
},
]
},
{
"id": 26,
"name": "t2",
"competitors": [
{
"id": 4,
"short_id" : 4,
...
},
{
"id": 3,
"short_id" : 3,
...
},
{
"id": 5,
"short_id" : 5,
...
},
]
},
{
"id": 28,
"name": "t3",
"competitors": []
}
]
答案 0 :(得分:1)