Protocol Buffers是Google推出的一個(gè)數(shù)據(jù)交換格式,相對(duì)于xml它的體積更小,更快,因?yàn)樗嵌M(jìn)制傳輸?shù)摹?a target="_blank" style="outline: none; text-decoration: none; color: rgb(61, 129, 238); border-bottom-width: 1px; border-bottom-style: dashed;">3.0相對(duì)于2.0變動(dòng)比較大。這些變動(dòng)可以去看官方說(shuō)明。
在前端使用ProtoBuf.js解析.proto文件,先需要再界面上引入protobuf.js。
定義一個(gè).proto
syntax = "proto3";// Tokenmessage MyModel{ string UserID = 1; string Device = 3; } message Message{ string ChannelID = 1; bytes Content = 4; }
加載:
延伸閱讀
學(xué)習(xí)是年輕人改變自己的最好方式