From 94d0a3f74bacb1e365c1d329f79176d7408e550e Mon Sep 17 00:00:00 2001 From: yangyile Date: Fri, 11 Oct 2024 19:22:05 +0700 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- vue3npm/README.md | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8ca9734..b76fb90 100644 --- a/README.md +++ b/README.md @@ -23,15 +23,15 @@ web_api_grpc_ts: --proto_path=./proto3ps \ $(THIRD_PARTY_GOOGLE_API_PROTO_FILES) ``` -具体使用时请自己根据实际编写吧 +具体使用时请自己根据实际编写吧,确保工具链相同。 ## 把grpc请求逻辑替换为使用http请求逻辑 -安装 +### 安装 ``` go install github.com/orzkratos/vue3kratos/cmd/vue3kratos2main@latest ``` -使用 +### 使用 ``` vue3kratos2main gen-grpc-via-http-in-path --grpc_ts_path=/xxx/src/rpc/rpc_admin_login/admin_login.client.ts ``` diff --git a/vue3npm/README.md b/vue3npm/README.md index 0ff22bd..a31ea2b 100644 --- a/vue3npm/README.md +++ b/vue3npm/README.md @@ -6,6 +6,12 @@ 但是因为在IDE里面总是提示找不到包名,因而把它做成子项目(带包管理)。 +## 使用举例 +需要在当前目录里执行: +``` +npm run rpcrewrite -- /xxx/src/rpc/rpc_admin_login/admin_login.client.ts +``` +当然您也可以把它拷贝到您的 vue3 项目里,把命令也拷贝粘贴修改,依然可以使用。 ## 其它信息 由于需要用到 js 因此需要使用 `"type": "module",` 在 package.json 里面。