在vue中添加watch,在watch属性中添加会报错,通过实例的$watch方法添加是可以的,原因是什么?

发布于 2022-09-04 10:55:14 字数 2016 浏览 26 评论 0

在vue中添加watch,在watch属性中添加,通过实例的$watch方法添加是可以的,原因是什么?但是我在html文件引入Vue,并在script中写,没有出现此问题。Vue文档中说,Vue 实例将会在实例化时调用 $watch(),遍历 watch 对象的每一个属性。这块不理解为什么出错。
下面是代码:

<template>
    <table id="datatable" class="table table-striped table-bordered">
        <thead>
            <tr>
                <th v-for="col in cols">
                    {{col}}
                </th>
            </tr>
        </thead>
        <tbody>
            <tr v-for="item in items">
                <td v-for="col in cols">
                    {{item[col]}}
                </td>
            </tr>
        </tbody>
    </table>
</template>
<script>
import $ from 'jquery';
import dt from 'datatable';

export default {
    name: 'DataTable',
    props: {
        modulePath: {
            type: String,
            required: true
        },
        module:{
            type: Array,
            required: true
        }
    },
    data: function(){
        return {
            columns:[],
            items:[{username:'ddd',password:'123',email:'aaa',department:'kf',gender:'aa',name:'ddd',salt:'sss'}]
        }
    },
    computed: {
        cols: function(){
            this.columns = this.module;
            return this.module;
        }
    },
    created(){
        // 获取数据
    },
    mounted(){
        // 初始化Datatable
        var self = this;
        var unwatch = this.$watch('cols', function (newVal, oldVal) {
            $(this.$el).DataTable();
            unwatch();
        }, {deep: true});
    },
    watch: {
        cols: {
            deep: true,
            handle: function(){
                $(this.$el).DataTable();
            }
        }
    }
}
</script>

watch计算属性时有上面的问题,代码中cols属性会出现,非计算属性不会出现,items属性不会,但是columns属性在cols计算方法中赋值,也会出错

错误:

错误

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月寒剑心 2022-09-11 10:55:14

根据提示应该是你的datatable组件报错了。

小草泠泠 2022-09-11 10:55:14

有一个拼写错误:handle 应为 handler

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文