如何在Vue.js中的父母和孙子之间进行双向数据绑定

问题描述 投票:21回答:3

我遇到了一个问题,我通过cookie来解决它,但我想解决没有cookie的问题。我有一个名为app-header的组件,它有另一个叫做outmodal的组件。现在,我的第一个Vue实例需要组件app-header。

var vue = new Vue({
    el : "html",
    data : {
        title       : "Site Title",
        description : "description of page",
        keywords    : "my keywords",
        view        : "home",
        login       : "login"
    },
    components:{
        "app-header" :require("../../components/header"),
        "app-footer" :require("../../components/footer"),
        "home"       :require("../../views/home")
    },
});

app-header的代码

var Vue     = require("vue");

Vue.partial("login",require("../../partials/login.html"));
Vue.partial("logged",require("../../partials/logged.html"));

module.exports = {
    template    : require("./template.html"),
    replace     : true,
    components  : {
        outmodal : require("../outmodal")
    },
    props : ['login']
}

出口代码

var Vue = require("vue");
Vue.partial("loginModal",require("../../partials/loginModal.html"));

module.exports = {
    template    : require("./template.html"),
    replace     : true,
    props       : ['name'],
    data        : function () {
            return  {
                userLogin : { mail  :   "", password    :   "", remember    :   ""}
            }

    },
    methods : {
        formSubmit : function(e){
                e.preventDefault();
                this.$http.post("http://example.com/auth/login",{ "email": this.userLogin.mail , "password": this.userLogin.password },function(data,status,request){
                    $.cookie("site_token",data.token,{expires : 1})
                }).error(function(data,status,request){

                });

        }
    }, ready  : function(){
        console.log("it works")
    }
}

在outmodal组件我连接API,我检查登录,如果登录将成功,我想在我的Vue实例中更改登录变量的值。我使用web pack来构建所有需求。所以我不知道如何在这些文件之间进行数据绑定。

我怎么解决呢?一世

data-binding components vue.js
3个回答

4
投票

有几种方法可以做到,有些方法在其他答案中提到:

  1. 使用props on components
  2. 使用v-model attribute
  3. 使用sync modifier
  4. 使用Vuex

对于双向绑定,请记住,它可能会导致一系列难以维护的突变,引自文档:

不幸的是,真正的双向绑定可能会产生维护问题,因为子组件可以改变父组件,而父组件和子组件中的突变源不明显。

以下是可用方法的一些细节:

1.)在组件上使用道具

道具易于使用,是解决大多数常见问题的理想方式。 由于how Vue observes changes,所有属性都需要在对象上可用,否则它们不会被反应。如果在Vue完成后可以观察到任何属性,则必须使用'set'

 //Normal usage
 Vue.set(aVariable, 'aNewProp', 42);
 //This is how to use it in Nuxt
 this.$set(this.historyEntry, 'date', new Date());

该对象对组件和父组件都是反应性的:

我将一个对象/数组作为道具传递,它是自动双向同步 - 更改子项中的数据,它在父项中更改。

如果您通过props传递简单值(字符串,数字),则必须明确使用.sync modifier

引自 - > https://stackoverflow.com/a/35723888/1087372

2.)使用v-model属性

v-model属性是语法糖,可以在父级和子级之间轻松实现双向绑定。它与sync修饰符的作用相同,只是它使用特定的prop和绑定的特定事件

这个:

 <input v-model="searchText">

与此相同:

 <input
   v-bind:value="searchText"
   v-on:input="searchText = $event.target.value"
 >

道具必须是价值并且必须输入事件

3.)使用同步修饰符

同步修饰符也是语法糖,并且与v模型相同,只是prop和事件名称由正在使用的任何东西设置。

在父级中,它可以如下使用:

 <text-document v-bind:title.sync="doc.title"></text-document>

从孩子那里可以发出一个事件来通知父母任何变化:

 this.$emit('update:title', newTitle)

4.)使用Vuex

Vuex是一个可从每个组件访问的数据存储。可以订阅更改。

通过使用Vuex存储,可以更容易地看到数据突变流,并且它们是明确定义的。通过使用vue developer tools,可以轻松调试和回滚所做的更改。

这种方法需要更多的样板,但如果在整个项目中使用它,它将成为一种更清晰的方式来定义如何进行更改以及从何处进行更改。

getting started guide


2
投票

我发现这个更准确。 https://vuejs.org/v2/guide/components.html#sync-Modifier仅在2.3.0+ tho。说实话,它还不够好。应该只是“双向”数据绑定的简单选项。所以这些选择都不好。

尝试使用vuex代替。他们有更多选择用于此目的。 https://vuex.vuejs.org/en/state.html

© www.soinside.com 2019 - 2024. All rights reserved.