From 97f4ecf7da8989048ef0442d3471ff870a4346ca Mon Sep 17 00:00:00 2001 From: yangyile Date: Fri, 11 Oct 2024 19:12:18 +0700 Subject: [PATCH] =?UTF-8?q?=E7=BC=96=E5=86=99=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b3b5e5f..8ca9734 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ Vue 3 frontends and Kratos backends integration toolkit. Enabling seamless commu 在学前端时发现vue3用起来还行,就想着用vue3做前端连接kratos的后端服务,因此做了个中间的胶水工具,让两个语言能够更顺畅的对接。 ## 把kratos的proto接口定义转换为 typescript 语言的 grpc 的请求 -``` +这里只能给 makefile 的参考内容,因为开发者的工具路径不同,三方包的路径和版本不同 +``` makefile web_api_grpc_ts: mkdir -p ./bin/web_api_grpc_ts.out protoc \ @@ -22,6 +23,7 @@ web_api_grpc_ts: --proto_path=./proto3ps \ $(THIRD_PARTY_GOOGLE_API_PROTO_FILES) ``` +具体使用时请自己根据实际编写吧 ## 把grpc请求逻辑替换为使用http请求逻辑 安装