为 NightmareJS 指定 SOCKS 代理?

Specify SOCKS Proxy For NightmareJS?

我可以为 NightmareJS 设置 HTTP 代理,但我该如何指定类型 (http/socks5/socks4)?这是我用来设置 HTTP 代理的代码:

const nightmare = Nightmare({
            show:true,
            switches: {
                'proxy-server': proxyHost + ':' + proxyPort,
                'ignore-certificate-errors': true
            },
            waitTimeout: 400000
        });

您可以通过 URI 方案指定代理的类型: socks5://

const nightmare = Nightmare({
    switches: {
        'proxy-server': 'socks5://' + proxyHost + ':' + proxyPort,
    },
});