Protocol Buffers是Google推出的一個數(shù)據(jù)交換格式,相對于xml它的體積更小,更快,因為它是二進制傳輸?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相對于2.0變動比較大。這些變動可以去看官方說明。

在前端使用ProtoBuf.js解析.proto文件,先需要再界面上引入protobuf.js。

定義一個.proto

移動開發(fā)培訓(xùn),Android培訓(xùn),安卓培訓(xùn),手機開發(fā)培訓(xùn),手機維修培訓(xùn),手機軟件培訓(xùn)

syntax = "proto3";// Tokenmessage MyModel{    string UserID = 1;    string Device = 3;
}
message Message{    string ChannelID = 1;
    bytes Content  = 4;
}

移動開發(fā)培訓(xùn),Android培訓(xùn),安卓培訓(xùn),手機開發(fā)培訓(xùn),手機維修培訓(xùn),手機軟件培訓(xùn)

加載:

網(wǎng)友評論