egg_error

作者: iamsea | 来源:发表于2021-01-29 10:49 被阅读0次

    Property 'sockets' does not exist on type 'EggSocketNameSpace'

    const nsp = app.io.of('/');
    const socket = nsp.sockets[socketId];
    

    修改为

    const nsp: any = app.io.of('/');
    const socket = nsp.sockets[socketId];
    

    相关文章

      网友评论

          本文标题:egg_error

          本文链接:https://www.haomeiwen.com/subject/dnhqtltx.html