便利性
扩展性
性能
安全

进度:

  • 类似于 SPA web-app
  • 无需 Rust 技能

缺点:

  • 无法访问Rust API
  • 使用本地主机

    描述

    Cloudish 是一种可以实现最大的灵活性和应用程序性能的模式。
    它使用本地主机服务器,这意味着您的应用将在技术上适用于其他流程。 像浏览器和网络上的其他潜在设备。
    你所有的资源都被打包到二进制文件中,但就好像它们是独立的文件一样。

    图表

    import Mermaid, { colors } from ‘@theme/Mermaid’
    F H==>D D—>F F—>D subgraph RUST A==>H end subgraph WEBVIEW F end subgraph SERVER D E—>D end A[Binary] D(( localhost )) E[bundled resources] F[Window] H{Bootstrap} 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”: false // 禁用全部API } }