<p>.NET Core 3.1 Preview 1如今可用。此版本主要側重於錯誤修復,但同時也包含一些新功能。<br> 這是此版本的ASP.NET Core的新增功能:</p> <ul> <li>對Razor components的部分類支持</li> <li>將參數傳遞給頂級組件</li> <li>在HttpSysServer中支持共享隊列</li> <li>在SameSite cookies的重大更改</li> </ul> <p>除了.NET Core 3.1 Preview版本發佈以外,咱們還發布了Blazor WebAssembly的更新,如今要求.NET Core 3.1. 若要使用Blazor WebAssembly,您須要安裝.NET Core 3.1 Preview 1以及Visual Studio的最新預覽版。</p> <p>有關其餘詳細信息和已知問題,請參見<a href="https://github.com/dotnet/core/tree/master/release-notes/3.1">發行說明</a></p> <h2>開始吧</h2> <p>要在.NET Core 3.1 Preview 1 中使用ASP.NET Core,須要安裝<a href="https://dotnet.microsoft.com/download/dotnet-core/3.1">.NET Core Preview 1 SDK</a>。</p> <p>若是你是在Windows上使用的Visual Studio,爲得到最佳體驗,建議你安裝Visual Studio 2019 16.4 的最新預覽版。安裝Visual Studio 2019 16.4 還將安裝上.NET Core 3.1 Preview 1,所以你無需單獨安裝它。爲在.NET Core 3.1 中使用Blazor 開發,Visual Studio 2019 16.4是必須的。</p> <p>要安裝最新的Blazor WebAssembly模板,請運行如下命令:</p> <p><code data-backticks="1">dotnet new -i Microsoft.AspNetCore.Blazor.Templates::3.1.0-preview1.19508.20</code></p> <h2>升級現有項目</h2> <p>要將現有的ASP.NET Core 3.0項目升級到3.1 Preview 1:</p> <ul> <li>將全部針對netcoreapp3.0的項目更新爲netcoreapp3.1</li> <li>將全部Microsoft.AspNetCore.*軟件包引用更新爲3.1.0-preview1.19506.1</li> </ul> <p>另請參閱ASP.NET Core 3.1中<a href="https://github.com/aspnet/announcements/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A3.1.0+label%3A%22Breaking+change%22">重大更改</a>的完成列表。</p> <p>如今,您應該都已準備好使用.NET Core 3.1 Preview 1!</p> <h2>對Razor components的部分類支持</h2> <p>Razor components如今做爲分佈類生成。你可使用定義爲局部類的代碼隱藏文件編寫Razor components的代碼,而不用在單個文件中定義該組件的全部代碼。</p> <p>例如,不是用<code data-backticks="1">@code</code>塊定義默認的Counter component,而是這樣:<br> Counter.razor</p> <pre><code>@page "/counter"html
<h1>Counter</h1>git
<p>Current count: @currentCount</p>github
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>web
@code { int currentCount = 0;瀏覽器
void IncrementCount() { currentCount++; } } </code></pre>cookie
<p>如今,你可使用部分類將代碼分離爲代碼隱藏文件:<br> Counter.razor</p> <pre><code>@page "/counter"app
<h1>Counter</h1>ui
<p>Current count: @currentCount</p>spa
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button> </code></pre>code
<p>Counter.razor.cs</p> <pre><code>namespace BlazorApp1.Pages { public partial class Counter { int currentCount = 0;
void IncrementCount() { currentCount++; }
} } </code></pre>
<h2>將參數傳遞給頂級組件</h2> <p>如今,Blazor Server應用程序能夠在初始渲染期間將參數傳遞給頂級組件(top-level components)。之前,你只能使用<code data-backticks="1">RenderMode.Static</code>將參數傳遞給頂級組件。在這次發佈的版本中,同時支持<code data-backticks="1">RenderMode.Server</code>和<code data-backticks="1">RenderModel.ServerPrerendered</code>。任何指定的參數值都將序列化爲JSON,幷包含在初始響應中。</p> <p>例如,你可使用特定的當前計數來渲染Counter組件,以下所示</p> <pre><code>@(await Html.RenderComponentAsync<Counter>(RenderMode.ServerPrerendered, new { CurrentCount = 123 })) </code></pre> <h2>在HttpSysServer中支持共享隊列</h2> <p>除了HttpSysServer建立匿名請求隊列的現有行爲外,咱們還添加了建立或附加到現有命名HTTP.sys 請求隊列的功能。<br> 這應該啓用一下方案:擁有隊列的HTTP.Sys控制器進程獨立於偵聽器進程,從而能夠在跨多個偵聽器進程從新啓動之間保留現有的鏈接和排隊的請求。</p> <pre><code>public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .ConfigureWebHostDefaults(webBuilder => { // ... webBuilder.UseHttpSys(options => { options.RequestQueueName = "MyExistingQueue", options.RequestQueueMode = RequestQueueMode.CreateOrAttach }) }); </code></pre> <h2>在SameSite cookies的重大更改</h2> <p>此版本更新了ASP.NET Core中SameSite cookie的行爲,以符合瀏覽器強制執行的最新標準。有關這些更改及其對現有應用程序的影響的詳細信息,請參見https://github.com/aspnet/Announcements/issues/390。</p> <h2>給予反饋</h2> <p>咱們但願您喜歡此ASP.NET Core預覽版中的新功能!經過在<a href="https://github.com/aspnet/aspnetcore/issues">GitHub</a>上提交問題,請讓咱們知道您的想法。</p> <p>感謝您試用ASP.NET Core!</p>
原文出處:https://www.cnblogs.com/sesametech-netcore/p/11723840.html