1

使用动态代码生成时,我们可以.proto使用以下方式加载文件:

const packageDefinition: PackageDefinition = protoLoader.loadSync(PROTO_PATH, {
  keepCase: true,
  longs: String,
  enums: String,
  defaults: true,
  oneofs: true,
  includeDirs: [__dirname],
});

我们可以设置keepCase选项来保留字段名称,不要将它们更改为驼峰式。和enums选项,所以我们可以使用枚举的字符串表示。

现在,我正在使用静态代码生成。面对以上两个问题,下面是我的服务的一个方法实现:

  public async getTopics(call: ServerUnaryCall<GetTopicsRequest>, callback: sendUnaryData<GetTopicsResponse>) {
    const obj = call.request.toObject();
    const url = `${config.CNODE_API_URL}/topics`;
    const params = {
      page: obj.page || obj.page + 1,
      tab: (getEnumKeyByEnumValue(Tab, obj.tab) || '').toLowerCase(),
      mdrender: (getEnumKeyByEnumValue(Mdrender, obj.mdrender) || 'true').toLowerCase(),
      limit: obj.limit,
    };
    try {
      const res = await axios.get(url, { params });
      const data = res.data;
      // console.log(data);
      const topicsResponse = new GetTopicsResponse();
      data.data.forEach((po, i) => {
        const topic = new Topic();
        topic.setId(po.id);
        topic.setAuthorId(po.author_id);
        topic.setTab(Tab[po.tab.toUpperCase() as keyof typeof Tab]);
        topic.setContent(po.content);
        topic.setTitle(po.title);
        topic.setLastReplyAt(po.last_reply_at);
        topic.setGood(po.good);
        topic.setTop(po.top);
        topic.setReplyCount(po.reply_count);
        topic.setVisitCount(po.visit_count);
        topic.setCreateAt(po.create_at);
        const author = new UserBase();
        author.setLoginname(po.author.loginname);
        author.setAvatarUrl(po.avatar_url);
        topic.setAuthor(author);
        topicsResponse.addData(topic, i);
      });
      topicsResponse.setSuccess(data.success);
      callback(null, topicsResponse);
    } catch (error) {
      console.log(error);
      const metadata = new Metadata({ idempotentRequest: true });
      metadata.set('params', JSON.stringify(params));
      metadata.set('url', url);
      const ErrGetTopics: ServiceError = { code: status.INTERNAL, name: 'getTopicsError', message: 'call CNode API failed', metadata };
      callback(ErrGetTopics, null);
    }
  }

以下是我面临的问题:

  • 使用 proto3 时无法设置默认值,想要将 page参数的默认值设置为1, NOT 0
  • 我需要手动将枚举从数字转换为字符串表示。
  • 来自 RESTful API 响应的字段是蛇案例,但是,protoc插件生成具有驼峰案例字段的模型。所以我想保留案例。grpc_tools_node_protocgrpc_tools_node_protoc_ts
  • 如您所见,水合过程既不方便又乏味。我需要调用设置器来一一设置字段的值。
4

0 回答 0