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

查看长表单末尾的数据部分(Blazor html)?,html,forms,blazor,Html,Forms,Blazor,我在Blazor html项目中有几个长格式部分。用户完成所有字段后,我希望在最后有一个部分,他们可以在提交之前再次检查输入的数据。有人能给我一些基本的结构/建议吗?isFilled->只是一个保持当前状态的变量 @if(isFilled == false){ <<<<<<Here is the data entery>>>>>>>> <button @OnCl

我在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>

}

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>

}

非常好,高质量的回答。谢谢,它们是罕见的优秀、高质量的答案。谢谢,它们很稀有