如何从表单容器Vue之外的另一个组件提交表单

Posted

技术标签:

【中文标题】如何从表单容器Vue之外的另一个组件提交表单【英文标题】:How to submit a form from another component outside of the form container Vue 【发布时间】:2021-05-10 00:55:33 【问题描述】:

我的页面上有一个表单,我希望从表单外的另一个按钮触发提交,我该怎么做?

【问题讨论】:

请分享代码 【参考方案1】:

你必须在 html 表单中添加一个引用

<form ref="form">
  <input name="field" v-model="value">
</form>

然后在您的方法中,您可以使用引用来提交表单

methods: 
  send: function()
    this.$refs.form.submit()
  

你可以在任何你想要的地方调用 send 方法。

您可以在此处了解有关 ref 属性的更多信息

https://v3.vuejs.org/guide/component-template-refs.html

【讨论】:

以上是关于如何从表单容器Vue之外的另一个组件提交表单的主要内容,如果未能解决你的问题,请参考以下文章

Vue中如何从B-modal提交表单数据

在 vue 组件上提交表单时如何获取值单选按钮?

带有子表单的Vue模态对话框,提交数据

在 formik 组件之外处理 formik 表单

单击属于表单的另一个按钮时如何禁用提交表单

另一个组件中的提交按钮创建辅助功能问题