gpt4 book ai didi

javascript - 使用meteor-autoform预览数据

转载 作者:行者123 更新时间:2023-11-28 00:42:54 25 4
gpt4 key购买 nike

我有一个带有表单和预览的选项卡式页面布局。有没有办法通过按“预览”按钮来验证表单,并在其有效后切换到第二个选项卡? IE。在按下“提交”按钮之前我们不会创建任何内容。

<div class="tab-content">
<div class="tab-pane text-left fade in active" id="compose">
{{#autoForm collection="Jobs" id="insertJobForm" type="insert"}}
{{> afQuickField name="title" class="form-control input-lg"}}
[more fields]
<div class="form-group">
<button type="submit">Preview</button>
</div>
{{/autoForm}}
</div>
<div class="tab-pane text-left" id="preview">
<h2>{{currentFieldValue "title"}}</h2>
[more output]
<button type="submit">Submit</button>
</div>
</div>

最佳答案

您可以使用 AutoForm.validateForm('yourFormIdGoesHere') 触发自动表单的验证,并使用 Autoform.getFormValues(yourFormIdGoesHere) 提取值,或者可以简单地序列化表单。

然后,您使用这些值作为预览模板的数据上下文:{{>previewTemplate formData}} 您需要为此创建一个模板助手。

关于javascript - 使用meteor-autoform预览数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27743794/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com