node-webkit 中文显示问题

node-webkit中文显示不出,需要添加--disable-direct-write参数到程序的启动参数中。
例如使用sublime text2的build system启动程序时配置如下:

{
    "cmd": ["nw.exe", "--enable-logging", "--disable-direct-write", "${project_path:${file_path}}"],
    "working_dir": "${project_path:${file_path}}",
    "path": "E:/node-webkit-v0.11.2-win-x64/",
    "shell": true
}

你可能感兴趣的:(node-webkit 中文显示问题)