从套接字事件中检索数值

huangapple go评论71阅读模式
英文:

Retrieve value from socket event

问题

我目前正在运行一个使用 Socket IOnode.js 服务器。我正在监听类似于 +level 的消息,当它来自客户端时,会更新一个对象。

socket.on("+level", async (data) => { 
    console.log(`Level: ${data}`);  
    player.updateLevel(data) 
})

不幸的是,这并没有生效。我正在使用 Postman,将其设置为 Socket.IO,然后发送类似于 +level 10 的消息。

截图:

从套接字事件中检索数值

英文:

I currently, have a node.js running with Socket IO. And I am listening to something like: +level and when it is retrieved from a client, update an object.

socket.on("+level", async (data) => { console.log(`Level: ${data}`);  player.updateLevel(data) })

On fortunately, this does not work. I am using Postman set it to Socket.IO and then I am sending like this: +level 10.

Screenshot:

从套接字事件中检索数值

答案1

得分: 1

将事件名称设置为 +level 在这里:

从套接字事件中检索数值

并在 Postman 中发送 10 作为参数。

查看此处的GIF以获取更多信息:
https://blog.postman.com/postman-now-supports-socket-io/#sending-events

英文:

Set event name to +level here:

从套接字事件中检索数值

And send 10 as an arg in Postman.

See the GIF here for more info:
https://blog.postman.com/postman-now-supports-socket-io/#sending-events

huangapple
  • 本文由 发表于 2023年4月10日 19:07:40
  • 转载请务必保留本文链接:https://go.coder-hub.com/75976546.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定