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.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

SurveyPrompt.razor 507B

12345678910111213141516
  1. <div class="alert alert-secondary mt-4">
  2. <span class="oi oi-pencil me-2" aria-hidden="true"></span>
  3. <strong>@Title</strong>
  4. <span class="text-nowrap">
  5. Please take our
  6. <a target="_blank" class="font-weight-bold link-dark" href="https://go.microsoft.com/fwlink/?linkid=2148851">brief survey</a>
  7. </span>
  8. and tell us what you think.
  9. </div>
  10. @code {
  11. // Demonstrates how a parent component can supply parameters
  12. [Parameter]
  13. public string? Title { get; set; }
  14. }