codecamp

Tauri open

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>


Tauri SpawnOptions
Tauri InvokeArgs
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Tauri 指南

Tauri 特性

Tauri 插件

Tauri 应用程序接口

Tauri JavaScript/TypeScript

Tauri 命令行界面

Tauri 进程

Tauri 参考

Tauri WebView 版本

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }