我有这个结构,使用websocket发送给客户端。
struct packet
{
TYPE type; //4 byte
int size; //4 byte
bool property1; //1 byte
bool property2; //1 byte
bool property3; //1 byte
};
数据包的大小为11个字节。有没有办法可以在JS中使用该结构创建一个对象,并将我收到的数据转换为该结构?谢谢!