简而言之,我怎样才能使这段代码更好:
@if( this.OnClick_Async is not null ) {
<div component-name="TermDisplay" class="basic"
@onclick=@(async e => await this.OnClick_Async(e))
onmouseover="if(@(this.Term.Context is not null) == true && @(this.Term.Context.Context is not null) == true) { window.DisplayMousePopup(event, `@this.Term.Context.Context.Term`); }">
@this.Term.ToString()
</div>
} else {
<div component-name="TermDisplay" class="basic"
onmouseover="if(@(this.Term.Context is not null) == true && @(this.Term.Context.Context is not null) == true) { window.DisplayMousePopup(event, `@this.Term.Context.Context.Term`); }">
@this.Term.ToString()
</div>
}
因为属性使用 Blazor,所以我不确定是否可以简单地使用属性分散来解决。
编辑:我意识到我可能针对给定的代码问了错误的问题,但主要问题仍然存在。