weixin_48858346 2022-04-12 15:28 采纳率: 0%
浏览 1066
已结题

event.data.match is not a function

问题遇到的现象和发生背景

前端代码运行加载的时候报:

VM8575:1 Uncaught TypeError: event.data.match is not a function
    at <anonymous>:1:271
(anonymous)    @    VM8575:1
postMessage (async)        
sendMsg    @    sendMessage.js?62fa:10
progressUpdate    @    index.js?10ef:157
eval    @    socket.js?d6e0:57
client.onmessage    @    WebSocketClient.js?5586:50

img

在控制台输出:event.data.match
报:Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'match')
在控制台输出 :data.match
报:user.vue?c1f3:248 Uncaught (in promise) ReferenceError: data is not defined

  • 写回答

1条回答 默认 最新

  • weixin_48858346 2022-04-12 16:14
    关注
    
            async editState(row){
                const confirmResult = await this.$confirm((row.state==1)?'该人员是否离职':'是否复职该人员', '提示',
                  {
                    confirmButtonText: '确定',
                    cancelButtonText: '取消',
                    type: 'warning',
                    center: true
                  }
                ).catch((err) => err)
                // 如果用户确认修改,则返回值为字符串 confirm
                // 如果用户取消了修改,则返回值为字符串 cancel
                // console.log(confirmResult)
                if (confirmResult !== 'confirm') {
                  return this.$message.info('已取消')
                }
                const { data: res } = await this.$http.put('user/' + row.state+'/'+row.id)
                if (res.meta.status !== 200) {
                  return this.$message.error('修改状态失败!')
                }
                this.$message.success('修改状态成功')
                this.getUserList()
                
            },
    

    271行代码

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 4月13日
  • 已采纳回答 4月13日
  • 创建了问题 4月12日
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部