Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Counter.razor 314B

123456789101112131415161718
  1. @page "/counter"
  2. <PageTitle>Counter</PageTitle>
  3. <h1>Counter</h1>
  4. <p role="status">Current count: @currentCount</p>
  5. <button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
  6. @code {
  7. private int currentCount = 0;
  8. private void IncrementCount()
  9. {
  10. currentCount++;
  11. }
  12. }