这是src
我的项目目录的结构:
.
├── config.ts
├── protos
│ ├── index.proto
│ ├── index.ts
│ ├── share
│ │ ├── topic.proto
│ │ ├── topic_pb.d.ts
│ │ ├── user.proto
│ │ └── user_pb.d.ts
│ ├── topic
│ │ ├── service.proto
│ │ ├── service_grpc_pb.d.ts
│ │ ├── service_pb.d.ts
│ │ ├── topic.integration.test.ts
│ │ ├── topic.proto
│ │ ├── topicServiceImpl.ts
│ │ ├── topicServiceImplDynamic.ts
│ │ └── topic_pb.d.ts
│ └── user
│ ├── service.proto
│ ├── service_grpc_pb.d.ts
│ ├── service_pb.d.ts
│ ├── user.proto
│ ├── userServiceImpl.ts
│ └── user_pb.d.ts
└── server.ts
share/user.proto
:
syntax = "proto3";
package share;
message UserBase {
string loginname = 1;
string avatar_url = 2;
}
topic/topic.proto
:
syntax = "proto3";
package topic;
import "share/user.proto";
enum Tab {
share = 0;
ask = 1;
good = 2;
job = 3;
}
message Topic {
string id = 1;
string author_id = 2;
Tab tab = 3;
string title = 4;
string content = 5;
share.UserBase author = 6;
bool good = 7;
bool top = 8;
int32 reply_count = 9;
int32 visit_count = 10;
string create_at = 11;
string last_reply_at = 12;
}
如您所见,我尝试导入share
包并UserBase
在消息类型中使用消息Topic
类型。当我尝试启动服务器时,出现错误:
Type .topic.Topic 中没有这样的 Type 或 Enum 'share.UserBase'
但是当我将包导入路径更改为相对路径时import "../share/user.proto";
。它工作正常并获得服务器日志:Server is listening on http://localhost:3000
.
以上是动态codegen的用法。
现在,我切换到使用静态代码生成,这是生成代码的 shell 脚本:
protoc \
--plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts \
--ts_out=./src/protos \
-I ./src/protos \
./src/protos/**/*.proto
似乎协议缓冲区编译器不支持相对路径,出现错误:
../share/user.proto: Backslashes, consecutive slashes, ".", or ".." are not allowed in the virtual path
而且,我将包导入路径改回import "share/user.proto";
. 它正确生成了代码,但是当我尝试启动服务器时,出现了同样的错误:
Type .topic.Topic 中没有这样的 Type 或 Enum 'share.UserBase'
有点奇怪。
软件包版本:
"grpc-tools": "^1.6.6",
"grpc_tools_node_protoc_ts": "^4.1.3",
protoc --version
libprotoc 3.10.0
更新: