Vue.js——60分钟组件快速入门(下篇)

Posted ____chen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue.js——60分钟组件快速入门(下篇)相关的知识,希望对你有一定的参考价值。

概述

上一篇我们重点介绍了组件的创建、注册和使用,熟练这几个步骤将有助于深入组件的开发。另外,在子组件中定义props,可以让父组件的数据传递下来,这就好比子组件告诉父组件:“嘿,老哥,我开通了一个驿站,你把东西放到驿站我就可以拿到了。”

今天我们将着重介绍slot和父子组件之间的访问和通信,slot是一个非常有用的东西,它相当于一个内容插槽,它是我们重用组件的基础。Vue的事件系统独立于原生的DOM事件,它用于组件之间的通信。

本文的主要内容如下:

  • 组件的编译作用域
  • 在组件template中使用<slot>标签作为内容插槽
  • 使用$children, $refs, $parent 实现父子组件之间的实例访问
  • 在子组件中,使用$dispatch向父组件派发事件;在父组件中,使用$broadcast向子组件传播事件
  • 结合这些基础知识,我们一步一步实现一个CURD的示例

Demo和源代码已放到GitHub,如果您觉得本篇内容不错,请点个赞,或在GitHub上加个星星!

注意:以下示例的组件模板都定义在<template>标签中,然而IE不支持<template>标签,这使得在IE中<template>标签中的内容会显示出来。解决办法——隐藏<template>标签

template{
    display: none;
}

个浏览器对<template>标签的支持情况,请参见:http://caniuse.com/#feat=template

编译作用域

尽管使用组件就像使用一般的html元素一样,但它毕竟不是标准的HTML元素,为了让浏览器能够识别它,组件会被解析为标准的HTML片段,然后将组件的标签替换为该HTML片段。

<div id="app">
    <my-component>
    </my-component>
</div>

<template id="myComponent">
    <div>
        <h2>{{ msg }}</h2>
        <button v-on:click="showMsg">Show Message</button>
    </div>
</template>
<script src="js/vue.js"></script>
<script>
    new Vue({
        el: \'#app\',
        components: {
            \'my-component\': {
                template: \'#myComponent\',
                data: function() {
                    return {
                        msg: \'This is a component!\'
                    }
                },
                methods: {
                    showMsg: function() {
                        alert(this.msg)
                    }
                }
            }
        }
    })

这段代码定义了一个my-component组件,<my-component><my-component>不是标准的HTML元素,浏览器是不理解这个元素的。
那么Vue是如何让浏览器理解<my-component><my-component>标签的呢?(下图是我个人的理解)

image

在创建一个Vue实例时,除了将它挂载到某个HTML元素下,还要编译组件,将组件转换为HTML片段。
除此之外,Vue实例还会识别其所挂载的元素下的<my-component>标签,然后将<my-component>标签替换为HTML片段。

实际上浏览器仍然是不理解<my-component>标签的,我们可以通过查看源码了解到这一点。

image

组件在使用前,经过编译已经被转换为HTML片段了,组件是有一个作用域的,那么组件的作用域是什么呢?
你可以将它理解为组件模板包含的HTML片段,组件模板内容之外就不是组件的作用域了。
例如,my-component组件的作用域只是下面这个小片段。

image

组件的模板是在其作用域内编译的,那么组件选项对象中的数据也应该是在组件模板中使用的。
考虑下面的代码,在Vue实例和组件的data选项中分别追加一个display属性:

new Vue({
    el: \'#app\',
    data: {
        display: true
    },
    components: {
        \'my-component\': {
            template: \'#myComponent\',
            data: function() {
                return {
                    msg: \'This is a component!\',
                    display: false
                }
            },
            methods: {
                showMsg: function() {
                    alert(this.msg)
                }
            }
        }
    }
})

然后在my-component标签上使用指令v-show="display",这个display数据是来源于Vue实例,还是my-component组件呢?

<div id="app">
    <my-component v-show="display">
    </my-component>
</div>

答案是Vue实例。

至此,我们应该认识到组件的作用域是独立的:

父组件模板的内容在父组件作用域内编译;子组件模板的内容在子组件作用域内编译

通俗地讲,在子组件中定义的数据,只能用在子组件的模板。在父组件中定义的数据,只能用在父组件的模板。如果父组件的数据要在子组件中使用,则需要子组件定义props。

使用Slot

为了让组件可以组合,我们需要一种方式来混合父组件的内容与子组件自己的模板。这个处理称为内容分发,Vue.js 实现了一个内容分发 API,使用特殊的 <slot> 元素作为原始内容的插槽。

如果不理解这段话,可以先跳过,你只要知道<slot>元素是一个内容插槽。

单个Slot

下面的代码在定义my-component组件的模板时,指定了一个<slot></slot>元素。

<div id="app">
    <my-component>
        <h1>Hello Vue.js!</h1>
    </my-component>

    <my-component>
    </my-component>
</div>
<template id="myComponent">
    <div class="content">
        <h2>This is a component!</h2>
        <slot>如果没有分发内容,则显示slot中的内容</slot>
        <p>Say something...</p>
    </div>
</template>
<script src="js/vue.js"></script>
<script>
    Vue.component(\'my-component\', {
        template: \'#myComponent\'
    })

    new Vue({
        el: \'#app\'
    })
</script>

这段代码运行结果如下:

image

第一个<my-component>标签有一段分发内容<h1>Hello Vue.js!</h1>,渲染组件时显示了这段内容。image

第二个<my-component>标签则没有,渲染组件时则显示了slot标签中的内容。

View Demo

指定名称的slot

上面这个示例是一个匿名slot,它只能表示一个插槽。如果需要多个内容插槽,则可以为slot元素指定name属性。

多个slot一起使用时,会非常有用。例如,对话框是HTML常用的一种交互方式。
在不同的运用场景下,对话框的头部、主体内容、底部可能是不一样的。

image

这时,使用不同名称的slot就能轻易解决这个问题了。

<template id="dialog-template">
    <div class="dialogs">
        <div class="dialog" v-bind:class="{ \'dialog-active\': show }">
            <div class="dialog-content">
                <div class="close rotate">
                    <span class="iconfont icon-close" @click="close"></span>
                </div>
                <slot name="header"></slot>
                <slot name="body"></slot>
                <slot name="footer"></slot>
            </div>
        </div>
        <div class="dialog-overlay"></div>
    </div>
</template>

<script src="js/vue.js"></script>
<script>
    Vue.component(\'modal-dialog\', {
        template: \'#dialog-template\',
        props: [\'show\'],
        methods: {
            close: function() {
                this.show = false
            }
        }
    })

    new Vue({
        el: \'#app\',
        data: {
            show: false
        },
        methods: {
            openDialog: function() {
                this.show = true
            },
            closeDialog: function() {
                this.show = false
            }
        }
    })
</script>

在定义modal-dialog组件的template时,我们使用了3个slot,它们的name特性分别是header、body和footer。

在<modal-dialog>标签下,分别为三个元素指定slot特性:

<div id="app">
    <modal-dialog v-bind:show.sync="show">

        <header class="dialog-header" slot="header">
            <h1 class="dialog-title">提示信息</h1>
        </header>

        <div class="dialog-body" slot="body">
            <p>你想在对话框中放什么内容都可以!</p>
            <p>你可以放一段文字,也可以放一些表单,或者是一些图片。</p>
        </div>

        <footer class="dialog-footer" slot="footer">
            <button class="btn" @click="closeDialog">关闭</button>
        </footer>
    </modal-dialog>

    <button class="btn btn-open" @click="openDialog">打开对话框</button>
</div>

对话框的标题内容、主体内容、底部内容,完全由我们自定义,而且这些内容就是一些简单的HTML元素!

View Demo

12

如果需要定制对话框的样式,我们只需要在<modal-dialog>上追加一个v-bind指令,让它绑定一个class。

<modal-dialog v-bind:show.sync="show" v-bind:class="dialogClass">

然后修改一下Vue实例,在data选项中追加一个dialogClass属性,然后修改openDialog()方法:

new Vue({
    el: \'#app\',
    data: {
        show: false,
        dialogClass: \'dialog-info\'
    },
    methods: {
        openDialog: function(dialogClass) {
            this.show = true
            this.dialogClass = dialogClass
        },
        closeDialog: function() {
            this.show = false
        }
    }
})

View Demo

13

虽然我们在modal-dialog组件中定义了3个slot,但是在页面中使用它时,并不用每次都指定这3个slot。
比如,有时候我们可能只需要header和body:

<modal-dialog v-bind:show.sync="show" v-bind:class="dialogClass">
    <header class="dialog-header" slot="header">
        <h1 class="dialog-title">提示信息</h1>
    </header>

    <div class="dialog-body" slot="body">
        <p>你想在对话框中放什么内容都可以!</p>
        <p>你可以放一段文字,也可以放一些表单,或者是一些图片。</p>
    </div>
</modal-dialog>

现在看到的对话框是没有底部的,只有标题和主体内容。

View Demo

14

多个slot同时使用的场景还有很多,例如:用户的注册、登录、找回密码等这些表单集合,也可以用一个组件来完成。

父子组件之间的访问

有时候我们需要父组件访问子组件,子组件访问父组件,或者是子组件访问根组件。
针对这几种情况,Vue.js都提供了相应的API:

  • 父组件访问子组件:使用$children或$refs
  • 子组件访问父组件:使用$parent
  • 子组件访问根组件:使用$root

$children示例

下面这段代码定义了3个组件:父组件parent-component,两个子组件child-component1和child-component2。

在父组件中,通过this.$children可以访问子组件。
this.$children是一个数组,它包含所有子组件的实例。

<div id="app">
    <parent-component></parent-component>
</div>

<template id="parent-component">
    <child-component1></child-component1>
    <child-component2></child-component2>
    <button v-on:click="showChildComponentData">显示子组件的数据</button>
</template>

<template id="child-component1">
    <h2>This is child component 1</h2>
</template>

<template id="child-component2">
    <h2>This is child component 2</h2>
</template>

<script src="js/vue.js"></script>
<script>
    Vue.component(\'parent-component\', {
        template: \'#parent-component\',
        components: {
            \'child-component1\': {
                template: \'#child-component1\',
                data: function() {
                    return {
                        msg: \'child component 111111\'
                    }
                }
            },
            \'child-component2\': {
                template: \'#child-component2\',
                data: function() {
                    return {
                        msg: \'child component 222222\'
                    }
                }
            }
        },
        methods: {
            showChildComponentData: function() {
                for (var i = 0; i < this.$children.length; i++) {
                    alert(this.$children[i].msg)
                }
            }
        }
    })

    new Vue({
        el: \'#app\'
    })
</script>

View Demo

15

$refs示例

组件个数较多时,我们难以记住各个组件的顺序和位置,通过序号访问子组件不是很方便。
在子组件上使用v-ref指令,可以给子组件指定一个索引ID:

<template id="parent-component">
    <child-component1 v-ref:cc1></child-component1>
    <child-component2 v-ref:cc2></child-component2>
    <button v-on:click="showChildComponentData">显示子组件的数据</button>
</template>

在父组件中,则通过$refs.索引ID访问子组件的实例:

showChildComponentData: function() {
    alert(this.$refs.cc1.msg);
    alert(this.$refs.cc2.msg);
}

$parent示例

下面这段代码定义了两个组件:child-component和它的父组件parent-component。
在子组件中,通过this.$parent可以访问到父组件的实例。

<div id="app">
    <parent-component></parent-component>
</div>

<template id="parent-component">
    <child-component></child-component>
</template>

<template id="child-component">
    <h2>This is a child component</h2>
    <button v-on:click="showParentComponentData">显示父组件的数据</button>
</template>

<script src="js/vue.js"></script>
<script>
    Vue.component(\'parent-component\', {
        template: \'#parent-component\',
        components: {
            \'child-component\': {
                template: \'#child-component\',
                methods: {
                    showParentComponentData: function() {
                        alert(this.$parent.msg)
                    }
                }
            }
        },
        data: function() {
            return {
                msg: \'parent component message\'
            }
        }
    })
    new Vue({
        el: \'#app\'
    })
</script>

View Demo

16

注意:尽管可以访问父链上任意的实例,不过子组件应当避免直接依赖父组件的数据,尽量显式地使用 props 传递数据。另外,在子组件中修改父组件的状态是非常糟糕的做法,因为: 
1.这让父组件与子组件紧密地耦合; 
2. 只看父组件,很难理解父组件的状态。因为它可能被任意子组件修改!理想情况下,只有组件自己能修改它的状态。

自定义事件

有时候我们希望触发父组件的某个事件时,可以通知到子组件;触发子组件的某个事件时,可以通知到父组件。
Vue 实例实现了一个自定义事件接口,用于在组件树中通信。这个事件系统独立于原生 DOM 事件,用法也不同。

每个 Vue 实例都是一个事件触发器:

  • 使用 $on() 监听事件;
  • 使用 $emit() 在它上面触发事件;
  • 使用 $dispatch() 派发事件,事件沿着父链冒泡;
  • 使用 $broadcast() 广播事件,事件向下传导给所有的后代。

派发事件

下面这段代码是一个简单的事件派发处理

<div id="app">
    <p>Messages: {{ messages | json }}</p>
    <child-component></child-component>
</div>

<template id="child-component">
    <input v-model="msg" />
    <button v-on:click="notify">Dispatch Event</button>
</template>

<script src="js/vue.js"></script>
<script>
    // 注册子组件
    Vue.component(\'child-component\', {
        template: \'#child-component\',
        data: function() {
            return {
                msg: \'\'
            }
        },
        methods: {
            notify: function() {
                if (this.msg.trim()) {
                    this.$dispatch(\'child-msg\', this.msg)
                    this.msg = \'\'
                }
            }
        }
    })

    // 初始化父组件
    new Vue({
        el: \'#app\',
        data: {
            messages: []
        },
        events: {
            \'child-msg\': function(msg) {
                this.messages.push(msg)
            }
        }
    })
</script>

View Demo

我们将这个示例分为几个步骤解读:

  1. 子组件的button元素绑定了click事件,该事件指向notify方法
  2. 子组件notify方法在处理时,调用了$dispatch,将事件派发到父组件child-msg事件,并给该该事件提供了一个msg参数
  3. 父组件的events选项中定义了child-msg事件,父组件接收到子组件的派发后,调用child-msg事件。

image

运行结果如下:

17

广播事件

下面这段代码是一个简单的事件广播处理

<div id="app">
    <input v-model="msg" />
    <button v-on:click="notify">Broadcast Event</button>
    <child-component></child-component>
</div>

<template id="child-component">
    <ul>
        <li v-for="item in messages">
            父组件录入了信息:{{ item }}
        </li>
    </ul>
</template>

<script src="js/vue.js"></script>
<script>
    // 注册子组件
    Vue.component(\'child-component\', {
        template: \'#child-component\',
        data: function() {
            return {
                messages: []
            }
        },
        events: {
            \'parent-msg\': function(msg) {
                this.messages.push(msg)
            }
        }
    })
    // 初始化父组件
    new Vue({
        el: \'#app\',
        data: {
            msg: \'\'
        },
        methods: {
            notify: function() {
                if (this.msg.trim()) {
                    this.$broadcast(\'parent-msg\', this.msg)
                }
            }
        }
    })
</script>

View Demo

我们将这个示例分为几个步骤解读:

  1. 父组件的button元素绑定了click事件,该事件指向notify方法
  2. 父组件notify方法在处理时,调用了$broadcast,将事件派发到子组件parent-msg事件,并给该该事件提供了一个msg参数
  3. 子组件的events选项中定义了parent-msg事件,子组件接收到父组件的广播后,调用parent-msg事件。

image

运行结果如下:

18

CURD示例

Vue.js组件的API来源于三部分——prop,slot和事件。

  • prop 允许外部环境传递数据给组件;
  • 事件 允许组件触发外部环境的 action;
  • slot 允许外部环境插入内容到组件的视图结构内。

至此,这三部分我都已经介绍完了,接下来我就用这些知识来教大家一步一步完成一个CURD示例。

第1步——创建表格组件,添加查询和删除功能

创建表格组件,添加过滤,数据删除功能

 

<div id="app">
    <div class="container">
        <div class="form-group">
            <label>Search</label>
            <input type="text" class="search-input" v-model="searchQuery" />
        </div>

    </div>
    <div class="container">
        <simple-grid :data-list="people" :columns="columns" :search-key="searchQuery">
        </simple-grid>
    </div>
</div>

<template id="grid-template">
    <table>
        <thead>
            <tr>
                <th v-for="col in columns">
                    {{ col.name | capitalize}}
                </th>
                <th>
                    Delete
                </th>
            </tr>
        </thead>
        <tbody>
            <tr v-for="(index,entry) in dataList | filterBy searchKey">
                <td v-for="col in columns">
                    {{entry[col.name]}}
                </td>
                <td class="text-center">
                    <button @click="deleteItem(index)">delete</button>
                </td>
            </tr>
        </tbody>
    </table>
</template>

<script src="../js/vue.js"></script>
<script>
    Vue.component(\'simple-grid\', {
        template: \'#grid-template\',
        props: [\'dataList\', \'columns\', \'searchKey\'],
        methods: {
            deleteItem: function(index) {
                this.dataList.splice(index, 1);
            },
        }
    })

    var demo = new Vue({
        el: \'#app\',
        data: {
            searchQuery: \'\',
            columns: [{
                name: \'name\'
            }, {
                name: \'age\'
            }, {
                name: \'sex\'
            }],
            people: [{
                name: \'Jack\',
                age: 30,
                sex: \'Male\'
            }, {
                name: \'Bill\',
                age: 26,
                sex: \'Male\'
            }, {
                name: \'Tracy\',
                age: 22,
                sex: \'Female\'
            }, {
                name: \'Chris\',
                age: 36,
                sex: \'Male\'
            }]
        }
    })
</script>

20[3]

View Demo

使用知识点

1. 使用Vue.component语法糖

Vue.component是创建并注册组件的语法糖,使用Vue.component注册的组件是全局的。

2. 使用prop将父组件数据传递给子组件

#app元素是父组件,simple-grid是子组件。

在simple-grid组件中定义选项props: [\'dataList\', \'columns\', \'searchKey\']
在#app下使用<simple-grid :data-list="people" :columns="columns" :search-key="searchQuery"> 将数据传递给simple-grid组件

3. 使用过滤器

{{ col.name | capitalize}}使用了capitalize过滤器,将字符串的首字母转换为大写后输出。
filterBy filterKey使用了filterBy过滤器,根据指定条件过滤数组元素,filterBy返回过滤后的数组。

4. 使用数组索引别名

数组默认的索引名称为$indexv-for="(index,entry) in dataList使用了数组索引别名
括号中的第一个参数index是$index的别名,第二个参数是遍历的数组元素。

5. 使用了v-bind和v-on指令的缩写

<simple-grid :data-list="people" :columns="columns" :search-key="searchQuery"> 使用了v-bind指令的缩写。
:data-listv-bind:data-list的缩写,:columnsv-bind:columns的缩写,:search-keyv-bind:search-key的缩写。

<button @click="deleteItem(index)">delete</button> 使用了v-on指令的缩写,@clickv-on:click的缩写。

第2步——创建对话框组件

表格数据的添加和修改,我们使用模态对话框来实现。
模态对话框有两种模式,新建模式和修改模式,分别用于新建一条数据和修改指定的数据。
由于对话框的内容来源于具体的数据,所以我们可以考虑将对话框作为simple-grid组件的一个子组件。

modal-dialog组件的模板内容:

<template id="dialog-template">
    <div class="dialogs">
        <div class="dialog" v-bind:class="{ \'dialog-active\': show }">
            <div class="dialog-content">
                <header class="dialog-header">
                    <h1 class="dialog-title">{{ title }}</h1>
                </header>
                <footer class="dialog-footer">
                    <div class="form-group">
                        <label></label>
                        <button v-on:click="save">Save</button>
                        <button v-on:click="close">Close</button>
                    </div>
                </footer>
            </div>
        </div>
        <div class="dialog-overlay"></div>
    </div>
</template>

modal-dialog组件在simple-grid组件中注册:

Vue.component(\'simple-grid\', {
    // ...已省略
    data: function() {
        return {
            mode: 0,
            item: {}
            titie: \'\'
        }
    },
    components: {
        \'modal-dialog\': {
            template: \'#dialog-template\',
            data: function() {
                return {
                    // 对话框默认是不显示的
                    show: false
                }
            },
            /*
             * mode = 1是新增数据模式,mode = 2是修改数据模式
             * title表示对话框的标题内容
             * fields表示对话框要显示的数据字段数组
             * item是由simple-dialog传下来,用于绑定表单字段的
             */
            props: [\'mode\', \'title\', \'fields\', \'item\'],
            methods: {
                close: function() {
                    this.show = false
                },
                save: function() {

                }
            }
        }
    }
    // ...已省略
})

由于modal-dialog组件是simple-grid的子组件,所以它应该在simple-grid的template中使用:

<template id="grid-template">
    <!--...前面的内容已省略	-->
    <modal-dialog :mode="mode" :title="title" :fields="columns" :item="item">
    </modal-dialog>
    <!--...后面的内容已省略	-->
</template>

以上是关于Vue.js——60分钟组件快速入门(下篇)的主要内容,如果未能解决你的问题,请参考以下文章

Vue.js——60分钟组件快速入门(下篇)

Vue.js——60分钟组件快速入门(下篇)三

Vue.js——60分钟组件快速入门(下篇)

Vue.js——60分钟组件快速入门

Vue.js——60分钟组件快速入门(上篇)

Vue.js——60分钟组件快速入门(上篇)