I have 2 tables
Table 1
[
{"Id": "1", "nome": "João"},
{"Id": "2", "nome": "Manoel"}
]
Table 2
[
{"Estudante": "1", "nota": "5", "avaliação": "1"},
{"Estudante": "1", "nota": "6", "avaliação": "2"},
{"Estudante": "1", "nota": "7", "avaliação": "3"},
{"Estudante": "1", "nota": "8", "avaliação": "4"},
{"Estudante": "2", "nota": "3", "avaliação": "1"},
{"Estudante": "2", "nota": "5", "avaliação": "2"},
{"Estudante": "2", "nota": "8", "avaliação": "3"},
{"Estudante": "2", "nota": "9", "avaliação": "4"}
]
I need to render as follows
Estudante: Jose
Evaluation 1 | nota 5
Evaluation 2 | nota 6
Evaluation 3 | nota 7
Evaluation 4 | nota 8
Estudante: Mark
Evaluation 1 | nota 3
Evaluation 2 | nota 5
Evaluation 3 | nota 8
Evaluation 4 | nota 9
I'm using the v-resource calling PHP data from Table 1 which is the list of students and using V-FOR to display
<Div v-for="Estudante in Estudantes">
Estudante {{Estudante.nome}}
</Div>
Now I would need within this first V-FOR, invoke another $ HTTP.POST by passing the ID to the query to bring me only the data related to the particular student within the loop.
What is the best way to run this system?