Razor Pages vs server-side Blazor

前端 未结 4 1258
感情败类
感情败类 2021-02-07 20:54

Razor Pages is used for server side web applications, just like in the good old days.

Blazor is aiming to provide an alternative to popular JavaScript frameworks (like

4条回答
  •  遇见更好的自我
    2021-02-07 20:58

    Razor Components, as they are named, are for creating reusable components for web pages.

    Razor pages are the combination of a web page and a controller in a single file.

    Razor components are primarily used by Blazor but they can also be used within Razor Pages, although they are designed to be more native to Blazor.

    You can't display a Razor Component without a page to host it, but you can display Razor Pages without Razor components.

    Razor Components are available from .NET Core 3.0 onwards.

    Razor Pages are available from .NET Core 2.1 onwards.

    EDIT

    RazorPages are split between an HTML page and a .cs code file. Whereas Razor Components usually have the .cs and HTML in a single file, although they can be separated into HTML and a Code Behind file.

    The PageModel for a Razor Page allows ASP.NET Core to bind the data returned by the controller to a public property in the page and then use that property within your page to reference the model. You use the property in the PageModel class to reference the data in the code and use the @model property within the HTML to reference the same properties.

    Razor Components do not bind to a model but you assign values to them using parameters, similar to how you assign values and events to a standard HTML element. An example of this can be seen here.

提交回复
热议问题