我有角度 like this 的多步骤表单,如何为所有步骤添加保存按钮?
有可能吗?
我的意思是当用户在form 1
时只保存'form 1'
答案 0 :(得分:1)
您可以使用嵌套的ng-form对象,但只能在外部表单中使用ng-submit,如下所示:
<ng-form name="master" ng-submit="doStuff()">
<ng-form name="step1"> ... </ng-form>
<ng-form name="step2"> ... </ng-form>
<input type="submit" value="Submit" />
</ng-form>
如果您不需要特定验证,只需使用普通表格和div来模仿多表格行为,您就可以跳过内部ng表格。