Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dotnet 9.0 scaffolding no longer works - errors when doing NavigationManager.NavigateTo in Create.razor #58951

Open
1 task done
coderdnewbie opened this issue Nov 14, 2024 · 3 comments
Labels
area-blazor Includes: Blazor, Razor Components

Comments

@coderdnewbie
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

Describe the bug

Perform the Dan Roth tutorial in https://www.youtube.com/watch?v=ZN-CcfEY3Z8

At 5:39 when the Create button is pressed, a failure happens in

NavigationManager.NavigateTo("/movies");

This is the failure in VS2022 17.12:

Microsoft.AspNetCore.Components.NavigationException
HResult=0x80131500
Message=Exception_WasThrown
Source=Microsoft.AspNetCore.Components.Server
StackTrace:
at Microsoft.AspNetCore.Components.Server.Circuits.RemoteNavigationManager.NavigateToCore(String uri, NavigationOptions options)
at Microsoft.AspNetCore.Components.NavigationManager.NavigateToCore(String uri, Boolean forceLoad)
at Microsoft.AspNetCore.Components.NavigationManager.NavigateTo(String uri, Boolean forceLoad, Boolean replace)
at BlazorMovieCRUDDemo.Components.Pages.MoviePages.Create.d__5.MoveNext() in C:\Users\ajayt\Desktop\Upgrade to dotnet 9 GA\BlazorMovieCRUDDemo\BlazorMovieCRUDDemo\Components\Pages\MoviePages\Create.razor:line 58
at Microsoft.AspNetCore.Components.ComponentBase.d__30.MoveNext()

This is from the autogenerated scaffolding performed exactly as Dan does it.

This used to work in dotnet 8.0, but now fails in dotnet 9.0.

Additionally, my dotnet 8.0 project when upgraded to dotnet 9.0 fails here as well.

Expected Behavior

I expect this to work as it did in dotnet 8.0

Steps To Reproduce

Perform the Dan Roth tutorial in https://www.youtube.com/watch?v=ZN-CcfEY3Z8

At 5:39 when the Create button is pressed, a failure happens in

NavigationManager.NavigateTo("/movies");

This is scaffolded code in Create.razor in the MoviePages subfolder.

Exceptions (if any)

This is the failure in VS2022 17.12:

Microsoft.AspNetCore.Components.NavigationException
HResult=0x80131500
Message=Exception_WasThrown
Source=Microsoft.AspNetCore.Components.Server
StackTrace:
at Microsoft.AspNetCore.Components.Server.Circuits.RemoteNavigationManager.NavigateToCore(String uri, NavigationOptions options)
at Microsoft.AspNetCore.Components.NavigationManager.NavigateToCore(String uri, Boolean forceLoad)
at Microsoft.AspNetCore.Components.NavigationManager.NavigateTo(String uri, Boolean forceLoad, Boolean replace)
at BlazorMovieCRUDDemo.Components.Pages.MoviePages.Create.d__5.MoveNext() in C:\Users\ajayt\Desktop\Upgrade to dotnet 9 GA\BlazorMovieCRUDDemo\BlazorMovieCRUDDemo\Components\Pages\MoviePages\Create.razor:line 58
at Microsoft.AspNetCore.Components.ComponentBase.d__30.MoveNext()

.NET Version

9.0.0

Anything else?

Image

@dotnet-issue-labeler dotnet-issue-labeler bot added the area-blazor Includes: Blazor, Razor Components label Nov 14, 2024
@coderdnewbie
Copy link
Author

Additional Information, which might help.

Even though this was selected as InteractiveServer in the dropdown (as Dan did), if I do the following in App.razor, then it works.

<HeadOutlet @rendermode="InteractiveServer" />

and

<Routes @rendermode="InteractiveServer" />

This is not needed for dotnet 8.0, as it worked successfully without any changes to the App.Razor file.

There definitely seems to be an issue with the scaffolding if done the way Dan did it in his demo. Hopefully it will not be difficult to resolve.

@guardrex
Copy link
Contributor

guardrex commented Nov 14, 2024

I just hit this when walking the tutorial for 9.0 updates ...

https://learn.microsoft.com/en-us/aspnet/core/blazor/tutorials/movie-database-app/?view=aspnetcore-9.0

Image

Note @coderdnewbie that it isn't the "Even though this was selected as InteractiveServer in the dropdown" (Interactive render mode) setting that places the render mode on HeadOutlet/Routes. It's the Interactivity location setting. What you did by adding them manually made the interactivity location global instead of per page/component. The tutorial takes the per page/component approach because we have devs enable interactivity in the last article of the tutorial series for only the movies Index page.

I agree with you ... it's a regression of some sort. This behavior wasn't happening in 8.0.

@guardrex
Copy link
Contributor

guardrex commented Nov 14, 2024

@danroth27 ... UPDATE: I'm going with the 8.0 framework in the 9.0 content to workaround this for now. The change is ⚡LIVE⚡ now. Temporarily use 8.0 framework (dotnet/AspNetCore.Docs #34118). I have tracking in place to revert back to 9.0 when the problem is resolved in the framework.

I know from our earlier discussion on a separate doc task that you aren't favorable to that blaring red CAUTION note in articles 📣😬, but I really want devs to see the instruction on selecting the 8.0 framework. If they don't see it, they'll get rather upset when their app 💥, and it will probably result in doc issues. I'm just trying to head that off with the most noticeable notice that we have. If you want to remove or change the word "CAUTION," I can place HTML in the article for a red alert box. 👂

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-blazor Includes: Blazor, Razor Components
Projects
None yet
Development

No branches or pull requests

2 participants