動的コード生成を使用する場合、次を.proto
使用してファイルをロードできます。
const packageDefinition: PackageDefinition = protoLoader.loadSync(PROTO_PATH, {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
includeDirs: [__dirname],
});
フィールド名を保持するオプションを設定keepCase
できますが、キャメルケースに変更しないでください。enums
オプションなので、列挙型を表す文字列を使用できます。
現在、静的コード生成を使用しています。上記の 2 つの問題に直面して、これが私のサービスのメソッド実装です。
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_protoc
。grpc_tools_node_protoc_ts
だから私はケースを維持したい。 - ご覧のとおり、水分補給プロセスは便利ではなく、退屈です。フィールドの値を 1 つずつ設定するには、セッターを呼び出す必要があります。