shell.openExternal 中文编码
时间: 2024-06-07 16:12:07 浏览: 137
shell编程中文
5星 · 资源好评率100%
shell.openExternal 是 Electron 中的一个函数,用于在默认浏览器中打开指定的外部链接。它能够处理中文编码的链接,例如:
```javascript
const { shell } = require('electron');
shell.openExternal('https://www.example.com/中文编码');
```
以上代码会在默认浏览器中打开一个链接,链接地址为 "https://www.example.com/中文编码"。无论链接中是否包含中文字符,shell.openExternal 都能正确处理。
阅读全文