前端开发您现在的位置是:首页 > 博客日志 > 前端开发

Vue + Element 中 this.$message 失效问题解决方法,undefined 是什么原因?

<a href='mailto:'>微wx笑</a>的头像微wx笑 2022-01-25前端开发 3 0关键字: Vue  Element  

this.$message undefined 是什么原因?应该怎么办?其实是this的作用域的问题。使用全局变量Vue.prototype来调$message()就可以了,这在官方文档有说明;或者重新定义this也是可以的。

Vue的Element确实给开发者提供了很大的便捷,比如消息提示中的:this.$message 函数就非常好用。但是在某些情况下是失效的,比如如下代码所示:wKY无知

onSubmit: function () {
    if (this.formInline.title === '') {
        // 这里可以成功使用$message函数
        this.$message({
            message: '失败!',
            type: 'warning'
        });
    } else {
        $.post('upload',
            {
                title: this.formInline.title,
            },
            function (res) {
                // 这里使用$message函数则是失效的
                this.$message({
                    message: '成功!',
                    type: 'success'
                });
            });
    }
},

可以看到后台返回的数据使用this.$message就会失效,因为 this 指的不再是Vue了,所以... ...
wKY无知

Vue.prototype.$message({
    message: '成功!',
    type: 'success'
});

使用全局变量Vue.prototype来调$message()就可以了。wKY无知

或者重新定义this也是可以的。如下:wKY无知

onSubmit: function () {
    var vm = this;
    if (this.formInline.title === '') {
        // 这里可以成功使用$message函数
        this.$message({
            message: '失败!',
            type: 'warning'
        });
    } else {
        $.post('upload',
            {
                title: this.formInline.title,
            },
            function (res) {
                // 这里就可以用了
                vm.$message({
                    message: '成功!',
                    type: 'success'
                });
            });
    }
},

以上部分转自:https://blog.csdn.net/hongyuancao/article/details/88078575wKY无知


wKY无知

后来发现,官方文档有说明的:wKY无知

全局方法

Element 为 Vue.prototype 添加了全局方法 $message。因此在 vue instance 中可以采用本页面中的方式调用 MessagewKY无知

全局方法

如果你完整引入了 Element,它会为 Vue.prototype 添加如下全局方法:$msgbox, $alert, $confirm 和 $prompt。因此在 Vue instance 中可以采用本页面中的方式调用 MessageBox。调用参数为:wKY无知

  • $msgbox(options)wKY无知

  • $alert(message, title, options) 或 $alert(message, options)wKY无知

  • $confirm(message, title, options) 或 $confirm(message, options)wKY无知

  • $prompt(message, title, options) 或 $prompt(message, options)wKY无知

全局方法

Element 为 Vue.prototype 添加了全局方法 $notify。因此在 vue instance 中可以采用本页面中的方式调用 Notification。wKY无知


wKY无知

本文由 微wx笑 创作,采用 署名-非商业性使用-相同方式共享 4.0 许可协议,转载请附上原文出处链接及本声明。
原文链接:https://www.ivu4e.cn/blog/front/2022-01-25/972.html

很赞哦! () 有话说 ()