"APIs": {
"API-1": "http://localhost:5000/student",
"API-2": "http://localhost:5001/teacher"}
これらの属性を launchSettings.json ファイルに作成しました。ここで、Student.razor ページの API-1 と API-2 の値にアクセスする必要があります。こんな感じで使ってみました..
List<Student> students = await http.GetFromJsonAsync<List<Student>>("API-1");