简单函数实现nwjs桌面端打开默认浏览器

1,020 阅读1分钟
// 浏览器相关封装
'use strict'

const gui = window.require('nw.gui')

// 使用操作系统浏览器打开链接
export function openUrlWithSystemBrowser (path, host) {
  if (!path) return
  return gui.Shell.openExternal(path)
}