1 回答
TA贡献1805条经验 获得超10个赞
<input>提交表单时,浏览器应包含表单中的任何元素。浏览器不会关心它是否<input>位于 Vue 组件内。
对于还没有<input>(或其他合适的表单元素)的组件,您可以添加隐藏输入<input type="hidden">来保存值。
如果您要包含的组件是第三方组件,那么您将无法直接添加隐藏输入。但是,您仍然可以使用包装器组件来添加它。下面的示例说明了如何处理该场景。
const thirdPartyComponent = {
template: `
<button
@click="onClick"
type="button"
>
Increment {{ value }}
</button>
`,
props: ['value'],
methods: {
onClick () {
this.$emit('input', this.value + 1)
}
}
}
const myCustomFancyVueComponent = {
template: `
<div>
<third-party-component v-model="counter" />
<input type="hidden" :value="counter">
</div>
`,
components: {
thirdPartyComponent
},
data () {
return {
counter: 4
}
}
}
new Vue({
el: 'form',
components: {
myCustomFancyVueComponent
}
})
<script src="https://unpkg.com/vue@2.6.11/dist/vue.js"></script>
<form action="/users" accept-charset="UTF-8" method="post">
<input type="email" name="user[email]">
<input type="password" name="user[password]">
<my-custom-fancy-vue-component></my-custom-fancy-vue-component>
<input type="submit" value="Sign up">
</form>
- 1 回答
- 0 关注
- 80 浏览
添加回答
举报