第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Go 結(jié)構(gòu)的 Protobuf 編譯器沒有為導(dǎo)入生成正確的包名稱?

Go 結(jié)構(gòu)的 Protobuf 編譯器沒有為導(dǎo)入生成正確的包名稱?

Go
暮色呼如 2022-05-18 16:50:39
考慮以下帶有 Go 模塊github.com/kurtpeek/proto-example和以下目錄結(jié)構(gòu)的示例項目(.proto目錄中的proto文件和生成的 Go 代碼gen/go):.├── gen│   └── go│       ├── author│       │   └── author.pb.go│       └── book│           └── book.pb.go├── go.mod├── go.sum├── main.go└── proto    ├── author    │   └── author.proto    └── book        └── book.proto這里author.proto讀syntax="proto3";package author;message Author {    string name = 1;}并像這樣book.proto導(dǎo)入:author.protosyntax="proto3";package book;import "author/author.proto";message Book {    string title = 1;    author.Author author = 2;}我.pb.go通過在proto/目錄中運行生成文件protoc book/book.proto --go_out=../gen/go和protoc author/author.proto --go_out=../gen/go
查看完整描述

1 回答

?
MMMHUHU

TA貢獻1834條經(jīng)驗 獲得超8個贊

您快到了!我懷疑你可能會被相對路徑咬傷......


如果您的 proto 文件以這樣的開頭:


package author;

option go_package = "github.com/kurtpeek/proto-example/gen/go/author";


package book;

import "author/author.proto";

option go_package = "github.com/kurtpeek/proto-example/gen/go/book";

并使用構(gòu)建命令(帶有相對路徑)


mkdir -p gen/go

protoc book/book.proto --go_out=gen/go

protoc author/author.proto --go_out=gen/go

您生成的代碼將出現(xiàn)在這些相對路徑(到您的 CWD)中:


gen/go/github.com/kurtpeek/proto-example/gen/go/author/author.pb.go

gen/go/github.com/kurtpeek/proto-example/gen/go/book/book.pb.go

生成的book包應(yīng)該具有所需的導(dǎo)入:


package book


import (

        fmt "fmt"

        proto "github.com/golang/protobuf/proto"

        author "github.com/kurtpeek/proto-example/gen/go/author"

        math "math"

)

如果您希望將生成的代碼放在特定目錄中,請使用絕對路徑:


mkdir -p /some/absolute/path

protoc my.proto --go_out=/some/absolute/path


查看完整回答
反對 回復(fù) 2022-05-18
  • 1 回答
  • 0 關(guān)注
  • 131 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號