Tauri open
open(: , : ):Promise
path
string
openWith?
string
<void
>
使用系统的默认应用程序打开路径或 URL, 或用 指定的那个。openWith
该值必须是 、 、 、 、 、 、 或 之一。openWith
firefox
google chrome
chromium
safari
open
start
xdg-open
gio
gnome-open
kde-open
wslview
例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
参数
名字 | 类型 | 描述 |
---|---|---|
path | string | 要打开的路径或 URL。 此值与 上定义的字符串正则表达式匹配, 该字符串默认为 。 tauri.conf.json > tauri > allowlist > shell > open ^((mailto:\w+)\|(tel:\w+)\|(https?://\w+)).+ |
openWith? | string | 用于打开文件或 URL 的应用。 默认为指定路径类型的系统默认应用程序。 |
Returns: Promise
<void
>