lua 中protobuf repeated 嵌套类 复合类型

Posted U_探索

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lua 中protobuf repeated 嵌套类 复合类型相关的知识,希望对你有一定的参考价值。

PB基础知识科普

syntax = "proto2";
package PB;

message  Item
{
    required string name = 1;
}
message  Role
{
    required string name = 1;  
    optional string email = 2;  
    repeated string t =3;
    repeated Item item1 = 4;
    optional  Item item2 =5;  
}

lua中解析 required  optional  repeated  类型

   require "proto.player_pb"

    local role = player_pb.Role()
    role.name="444"   --require字段

    role.email ="eiail2222222" --optional
    role.t:append("111") --repeated 基本类型

    local tt =role.item1:add() -- repeated 嵌套类 复合类型
    tt.name ="555"

    role.item2.name = "6666" -- optional 嵌套类 复合类型

    local pb_data1 = role:SerializeToString()
    
    local msg = player_pb.Role()
    msg:ParseFromString(pb_data1)

    print(msg.email.."   "..msg.item1[1].name.."  "..msg.item2.name)

以上是关于lua 中protobuf repeated 嵌套类 复合类型的主要内容,如果未能解决你的问题,请参考以下文章

protobuf repeated 怎么用的

protobuf repeated 怎么用的

大侠们unity怎么在lua中用protobuf的

unity protobuf使用repeated字段转c#文件后List只读问题

cocos2d-x lua 中使用protobuf并对http进行处理

protobuf 学习 收藏的文章