便利性 | |
---|---|
扩展性 | |
性能 | |
安全 |
进度:
- 所有可用功能
- 无需 Rust 技能
缺点:
- 最大的分发包大小
- 难以区分关注点
描述
Cloudbridge 模式结合了本地主机的灵活性和桥接的安全性。
功能太多,以至于很容易令人迷惑。图表
import Mermaid, { colors } from ‘@theme/Mermaid’
F2 H==>D2 D2—>F2 F2—>D2 B—>D D—>B E2—>D D—>E2 subgraph WEBVIEW F2 E2 end subgraph SERVER D2 E—>D2 end subgraph RUST A==>H A—>B B-.-C end A[Binary] B{Rust Broker} C[Subprocess] D(( API BRIDGE )) E{JS Broker} D2(( localhost )) E[bundled resources] E2{JS Broker} F2[Window] H{Bootstrap} style D fill:#ccc,stroke:#333,stroke-width:4px,color:white style RUST fill:${colors.orange.light},stroke:${colors.orange.dark},stroke-width:4px style WEBVIEW fill:${colors.blue.light},stroke:${colors.blue.dark},stroke-width:4px style SERVER fill:#49A24A,stroke:#2B6063,stroke-width:4px `} />配置
这里是您需要添加到您的 tauri.conf.json 文件的内容:
“tauri”: { “embeddedServer”: { “active”: true // 不使用本地服务器 }, “permlist”: { “all”: true // 启用全部API } }