Dieses Protokoll wird beim Debuggen des Knotenprozesses verwendet. Ich möchte den Debug-Link automatisch öffnen: --inspect
方式和chrome-devtools://
let child_process = require('child_process'),
url = 'http://' + debugUrl;
if (process.platform == 'wind32') {
cmd = 'start "%ProgramFiles%\Internet Explorer\iexplore.exe"';
} else if (process.platform == 'linux') {
cmd = 'xdg-open';
} else if (process.platform == 'darwin') {
cmd = 'open';
}
child_process.exec(`${cmd} "${url}"`);
Die Seite öffnete sich nicht automatisch. Es kam mir so vor, als würde dieses nicht standardmäßige Protokoll nicht unterstützt, daher blieb mir nichts anderes übrig, als mit einem Doppelpunkt in der Mitte zu verwenden, um darauf zuzugreifen. http://
协议头,变成了这种链接:http://chrome-devtools//devtools/...
,因为浏览器自动省略了http://
部分,所以手动在chrome-devtools//
推荐一个 npm 包,希望能解决你的问题
Open a file or url in the user's preferred application.