0

在 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 语法是什么?

4

2 回答 2

0

对于“url”,您可以在“main”字段中输入。

引用它可以这样写'--key

于 2013-04-30T09:59:23.690 回答
0

用单引号代替双引号

"chromium-args" : "--url='http://www.google.com'"

于 2014-03-25T12:34:17.803 回答