如何将变量的值从组件1发送到组件2? (vue.js 2)

时间:2017-02-16 15:05:13

标签: javascript vue.js vuejs2 vue-component

我的观点是这样的:

<div class="row">
    <div class="col-md-3">
        <search-filter-view ...></search-filter-view>
    </div>
    <div class="col-md-9">
        <search-result-view ...></search-result-view>
    </div>
</div>

我的search-filter-view组件是这样的:

<script>
    export default{
        props:[...],
        data(){
            return{
                ...
            }
        },
        methods:{
            filterBySort: function (sort){
                this.sort = sort
                ...
            }
        }
    }
</script>

我的搜索结果视图组件是这样的:

<script>
    export default {
        props:[...],
        data() {
            return {
                ...
            }
        },

        methods: {
            getVueItems: function(page) {
                ...
            }
        }
    }
</script>

我希望sort参数(filterBySort方法,组件一)的显示值为getVueItems方法(组件二)

我该怎么做?

1 个答案:

答案 0 :(得分:2)

我将详细说明Serge引用的内容。在Vue v1中,组件可以只向世界广播消息,而其他组件可以只是监听并对其进行操作。在Vue2中,它更加精致,更加明确。

您需要做的是创建一个单独的Vue实例作为两个现有组件可见的信使或通信总线。示例(使用ES5):

// create the messenger/bus instance in a scope visible to both components
var bus = new Vue();

// ...

// within your "result" component
bus.$emit('sort-param', 'some value');

// ...

// within your "filter" component
bus.$on('sort-param', function(sortParam) {
    // ... do something with it ...
});

对于比简单的组件到组件通信更复杂的事情,应该调查Vuex(Vue相当于React的Redux)。