NetEase / pomelo

A fast,scalable,distributed game server framework for Node.js.
http://pomelo.netease.com
MIT License
11.87k stars 2.9k forks source link

protobuf 布尔值传递问题 #1126

Open luvFriday opened 5 years ago

luvFriday commented 5 years ago

在 serverProtos.json 中配置发送给客户端的消息,如果是布尔值时: 如: "optional uInt32 index": 1, "optional bool unlock": 2, "optional bool received": 3 客户端只能正确收到 index, unlock 和 received 都是 undefined。 是 pomelo 的 protobuf 不支持发送布尔值消息吗?还是我的配置问题?请各路大神指教!

whtiehack commented 5 years ago

没有 bool,用 uInt32 替代吧。