在 node-webkit 的 package.json 文件中,我有:"chromium-args" : "--url="http://www.google.com""
我尝试使用反斜杠 \"www.google.com\",但使用黑斜杠时 webkit 似乎根本没有打开。如果我不使用黑斜线,webkit 会加载窗口但会产生 JSON 语法错误。
package.json 文件代码:
{
"main": "index.html",
"name": "nw-demo",
"description": "demo app of node-webkit",
"version": "0.1.0",
"keywords": [ "demo", "node-webkit" ],
"window": {
"icon": "link.png",
"toolbar": true,
"width": 800,
"height": 500,
"position": "mouse",
"min_width": 400,
"min_height": 200,
"max_width": 800,
"max_height": 600
},
"webkit": {
"plugin": true
},
"chromium-args" : "--url=\"http://www.google.com\""
}
“chromium-args”的正确 json 语法是什么?