微信小程序支持 protobuf 吗?
如果微信小程序支持 google protobuf 的话 有没有 demo 参考。
原来项目中一直在用google protobuf,如果能够支持将会节约大量时间。
10 回复
真机上还要手动转换下,判断不是模拟器,再封装一遍,微信那边有bug。。。
const message = Hello2Server.create(msg)
const encodedMessage = Hello2Server.encode(message).finish()
console.log(`hello:`, encodedMessage)
let newMsg = encodedMessage
if (sysInfo.platform !== 'devtools') {
newMsg = new Uint8Array([...encodedMessage]).buffer
}
console.log('newMsg:', newMsg)
wx.sendSocketMessage({
data: newMsg
})