mirror of
https://gitee.com/Doocs/md
synced 2025-04-29 09:32:27 +08:00
parent
9355aeb421
commit
3cc158ffe7
@ -52,7 +52,7 @@ Markdown 文档自动即时渲染为微信图文,让你不再为微信内容
|
||||
| 5 | [七牛云](https://www.qiniu.com/products/kodo) | 配置 `AccessKey`、`SecretKey`、`Bucket`、`Domain`、`Region` 参数 | [如何使用七牛云 Kodo?](https://developer.qiniu.com/kodo) |
|
||||
| 6 | [MinIO](https://min.io/) | 配置 `Endpoint`、`Port`、`UseSSL`、`Bucket`、`AccessKey`、`SecretKey` 参数 | [如何使用 MinIO?](http://docs.minio.org.cn/docs/master/) |
|
||||
| 7 | [公众号](https://mp.weixin.qq.com/) | 配置 `appID`、`appsecret`、`代理域名` 参数 | [如何使用公众号图床?](https://mp.honwhy.wang/tutorial) |
|
||||
| 8 | [Cloudflare R2](https://developers.cloudflare.com/r2/) | 配置 `AccountId`、`AccessKey`、`SecretKey`、`Bucket`、`Domain` 参数 | [如何使用 S3 API 操作 R2](https://developers.cloudflare.com/r2/api/s3/api/) |
|
||||
| 8 | [Cloudflare R2](https://developers.cloudflare.com/r2/) | 配置 `AccountId`、`AccessKey`、`SecretKey`、`Bucket`、`Domain` 参数 | [如何使用 S3 API 操作 R2?](https://developers.cloudflare.com/r2/api/s3/api/) |
|
||||
| 9 | 自定义上传 | 是 | [如何自定义上传?](#自定义上传逻辑) |
|
||||
|
||||

|
||||
|
@ -2,16 +2,18 @@
|
||||
|
||||
## worker.js
|
||||
|
||||
公众号openapi接口代理服务示例,该项目将请求转发至微信公众号api。
|
||||
公众号 openapi 接口代理服务示例,该项目将请求转发至微信公众号 api。
|
||||
|
||||
开发调试:
|
||||
|
||||
```
|
||||
```bash
|
||||
cd example
|
||||
npx wrangler dev worker.js
|
||||
```
|
||||
|
||||
或者安装依赖后启动
|
||||
```
|
||||
|
||||
```bash
|
||||
cd example
|
||||
pnpm i
|
||||
pnpm dev
|
||||
@ -19,4 +21,4 @@ pnpm dev
|
||||
|
||||
部署:
|
||||
|
||||
请将其部署到cloudflare workers。
|
||||
请将其部署到 cloudflare workers。
|
||||
|
@ -1,6 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import type { ComponentPublicInstance } from 'vue'
|
||||
import { altKey, altSign, ctrlKey, shiftKey, shiftSign } from '@/config'
|
||||
import { altKey, altSign, ctrlKey, ctrlSign, shiftKey, shiftSign } from '@/config'
|
||||
import { useDisplayStore, useStore } from '@/stores'
|
||||
import {
|
||||
checkImage,
|
||||
@ -416,11 +416,11 @@ onMounted(() => {
|
||||
<ContextMenuSeparator />
|
||||
<ContextMenuItem inset @click="copyToClipboard()">
|
||||
复制
|
||||
<ContextMenuShortcut>Ctrl + C</ContextMenuShortcut>
|
||||
<ContextMenuShortcut> {{ ctrlSign }} + C</ContextMenuShortcut>
|
||||
</ContextMenuItem>
|
||||
<ContextMenuItem inset @click="pasteFromClipboard">
|
||||
粘贴
|
||||
<ContextMenuShortcut>Ctrl + V</ContextMenuShortcut>
|
||||
<ContextMenuShortcut> {{ ctrlSign }} + V</ContextMenuShortcut>
|
||||
</ContextMenuItem>
|
||||
<ContextMenuItem inset @click="formatContent()">
|
||||
格式化
|
||||
|
Loading…
x
Reference in New Issue
Block a user