Tauri open

2024-02-05 16:40 更新
open(: , : ): PromisepathstringopenWith?string<void>

使用系统的默认应用程序打开路径或 URL, 或用 指定的那个。openWith

该值必须是 、 、 、 、 、 、 或 之一。openWithfirefoxgoogle chromechromiumsafariopenstartxdg-opengiognome-openkde-openwslview

import { open } from '@tauri-apps/api/shell';

// opens the given URL on the default browser:
await open('https://github.com/tauri-apps/tauri');
// opens the given URL using `firefox`:
await open('https://github.com/tauri-apps/tauri', 'firefox');
// opens a file using the default program:
await open('/path/to/file');

Since: 1.0.0

参数

名字类型描述
pathstring要打开的路径或 URL。
此值与 上定义的字符串正则表达式匹配,
该字符串默认为 。tauri.conf.json > tauri > allowlist > shell > open^((mailto:\w+)\|(tel:\w+)\|(https?://\w+)).+
openWith?string用于打开文件或 URL 的应用。
默认为指定路径类型的系统默认应用程序。

Returns: Promise<void>


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号