最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

Electron用默认浏览器打开外部链接的实现方式

业界 admin 1浏览 0评论

采用electron提供的shell模块可以实现electron内部点击按钮跳转到外部浏览器;网上提供的博客也有很多,看到了大家好多使用第一种方式的,但是new-window官方已经废弃。

第一种方式:new-window官方已经废弃


import { app,shell } from "electron";
  
app.on('web-contents-created', (e, webContents) => {
    webContents.on('new-window', (event, url) => {
        event.preventDefault();
        shell.openExternal(url);
    });
});

第二种方式:官方推荐的方式


import { app,shell } from "electron";
app.on('web-contents-created', (e, webContents) => {
    webContents.setWindowOpenHandler(({ url, frameName }) => {
        shell.openExternal(url);
        return { action: 'deny' };
    });
});

此处设置为deny 是为了取消创建新窗口。打开外部浏览器,如果不想打开外部浏览器的话可以去掉shell的调用,将deny改为allow

api详情可以参考官方推荐的方法解说:webContents | Electron 

参考文档:Electron # 用默认浏览器打开链接的3种实现方式_真·skysys的博客-CSDN博客_electron调用默认浏览器

https://github/electron/electron/pull/24517 

采用electron提供的shell模块可以实现electron内部点击按钮跳转到外部浏览器;网上提供的博客也有很多,看到了大家好多使用第一种方式的,但是new-window官方已经废弃。

第一种方式:new-window官方已经废弃


import { app,shell } from "electron";
  
app.on('web-contents-created', (e, webContents) => {
    webContents.on('new-window', (event, url) => {
        event.preventDefault();
        shell.openExternal(url);
    });
});

第二种方式:官方推荐的方式


import { app,shell } from "electron";
app.on('web-contents-created', (e, webContents) => {
    webContents.setWindowOpenHandler(({ url, frameName }) => {
        shell.openExternal(url);
        return { action: 'deny' };
    });
});

此处设置为deny 是为了取消创建新窗口。打开外部浏览器,如果不想打开外部浏览器的话可以去掉shell的调用,将deny改为allow

api详情可以参考官方推荐的方法解说:webContents | Electron 

参考文档:Electron # 用默认浏览器打开链接的3种实现方式_真·skysys的博客-CSDN博客_electron调用默认浏览器

https://github/electron/electron/pull/24517 

发布评论

评论列表 (0)

  1. 暂无评论