Tauri 从 JavaScript 运行它
在 JavaScript 代码中,导入 shell 模块的 Command 类,并使用 sidecar 静态方法。
请注意,您必须配置允许列表以启用 shell > sidecar,并在 shell > scope 中配置所有二进制文件。
import { Command } from '@tauri-apps/api/shell'
// alternatively, use `window.__TAURI__.shell.Command`
// `binaries/my-sidecar` is the EXACT value specified on `tauri.conf.json > tauri > bundle > externalBin`
const command = Command.sidecar('binaries/my-sidecar')
const output = await command.execute()