码迷,mamicode.com
首页 > 其他好文 > 详细

Egret之ProtoBuf(引用)

时间:2019-01-07 17:26:38      阅读:924      评论:0      收藏:0      [点我收藏+]

标签:ret   src   技术分享   分享   pass   注意   mes   ilo   ted   

前言 : 有时候 , 在proto中的一个类需要引用另一个类 . 本篇既是为解释这一问题的.




一 : test.proto(在protobuf\protofile中)

package Test;
message LVO{
    required string message = 1;
    required int32 priority = 2;
}
message Login{
    required string userName = 1;
    required string password = 2;
    optional int32 sex = 3;
    required LVO lvo = 4;
    required bool isFirstLogin = 5;
    repeated string param = 6;
}

① , Login引用了LVO

二 : 使用命令pb-egret generate

① , 必须注意的是 : proto文件在protobuf\protofile中,这样使用pb-egret generate后,会生成文件在protobuf\bundles中 :
技术分享图片
② , 我们可以看看生成的相关的.d.ts(protobuf-bundles.d.ts)
技术分享图片

三 : 使用

        let $login : Test.ILogin = new Test.Login({
            userName:"Aonaufly",
            password:"123456",
            sex:1,
            lvo:{
                message : "Snow",
                priority : 1
            },
            isFirstLogin:false,
            param:["test", "array", "param"]
        });

① , 使用Login中的lvo数据 $login.lvo.message

Egret之ProtoBuf(引用)

标签:ret   src   技术分享   分享   pass   注意   mes   ilo   ted   

原文地址:http://blog.51cto.com/aonaufly/2339754

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!