phantomjs outputEncoding.js 示例不显示正确的字符(丹麦字符)...
我在 Windows 上运行 phantomjs 1.7。
(这曾经在我在 linux 上运行 phantomjs 1.4 时有效,但在更新到 1.8.2 版本后也会在 linux 上报错)
输出编码.js:
function helloWorld() {
console.log(phantom.outputEncoding + ": æøå");
}
console.log("Using default encoding...");
helloWorld();
console.log("\nUsing other encodings...");
var encodings = ["euc-jp", "sjis", "utf8", "System"];
for (var i = 0; i < encodings.length; i++) {
phantom.outputEncoding = encodings[i];
helloWorld();
}
phantom.exit();
控制台结果:
非常感谢任何帮助!
谢谢。