注:private 是默认修饰符,可以省略不写
@ 使用示例
@* 组件成员使用以 @ 符号开头的 C# 表达式 *@
<h1 style="font-style:@headingFontStyle">@headingText</h1>
<p role="status">Current count: @currentCount</p>
@code {
private int currentCount = 0;
private string headingFontStyle = "italic";
string headingText = "italic test";
}
指定组件的基类示例
@inherits CounterBase
异步方法 (async) 不支持返回 void
Blazor 框架不跟踪返回 void 的异步方法 (async)。 因此,如果 void 返回,则不会捕获异常。 始终从异步方法返回 Task。