查看长表单末尾的数据部分(Blazor html)



我在Blazor html项目中有几个长格式的部分。在用户完成所有字段后,我希望在最后有一个部分,他们可以在提交前仔细检查输入的数据。有人能给我如何做到这一点的基本结构/建议吗?

isFilled->只是一个保持当前状态的变量。

@if(isFilled == false){

<<<<<<Here is the data entery>>>>>>>>
<button @OnClick="next">Next</button>
}

@if(isFilled == true){
<section>

<<<<<<<<<<<Review the data here>>>>>>>>>
<button @OnClick="confirm">Confirm</button>
<button @OnClick="edit">Edit</button>
</section>
}

代码段:

@Code{
private bool isFilled;

protected override void OnInitialized()
{
isFilled = false;
}

private void next(){
isFilled = ture;
}
private void edit(){
isFilled = false;
}
private void confirm(){

}
}

相关内容

  • 没有找到相关文章

最新更新