我有一个有角度的JS应用,它会在新标签页中打开一个链接。
var url = $state.href('runmixedreports', {report_type :'matters',
report_id : 'results'}, {reload : true});
window.open(url,'_blank');
当我尝试使用相同的电子代码在浏览器中打开时,没有调用任何控制器。
const shell = require('electron').shell;
shell.openExternal(document.location.origin + url);
我的网页空白。我不确定应用程序会话是否可以从Windows传送到浏览器。