thinkphp 配合 element 框架使用问题。

发布于 2022-09-12 13:27:08 字数 542 浏览 16 评论 0

在非前后端分离的项目中使用element 想要使用this.$notify这种通知组件,代码如下

<script>
    axios.interceptors.response.use(response => {
        return response;
    }, err => {
        console.log(err.response.data.msg);
        this.$notify({
            title: err.response.data.msg,
            message: "",
            duration: 3000
        });
        Promise.reject(err);
    })
</script>

上面的代码报错。$notify not define .

教程提供的方式貌似是要用import 的方式引入,但是我这边不分离的框架貌似不支持import 的方式,同时也没有在Vue的实例里面,请问下要怎么支持这个通知组件的使用?

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

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

发布评论

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

评论(1

小傻瓜 2022-09-19 13:27:08

其问题出在this 指向,按照你现在这种写的方式就不能这么用
首先确保引入 element-ui 库

<!-- 引入样式 -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!-- 引入组件库 -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>

然后执行

<script> 
    axios.interceptors.response.use(response => {
        return response;
    }, err => {
        console.log(err.response.data.msg);
        window.ELEMENT.Notification({
            title: err.response.data.msg,
            message: "",
            duration: 3000
        })
        Promise.reject(err);
    }) 
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文