是否可以添加可在launch.json
设置中使用的自定义变量,以便在VSCode中进行调试?目前,我发现的唯一方法是将它们添加到我的工作区设置中,并从${config}
predefined variable进行引用。
我想在launch.json
中定义变量/属性并使用它们。这是一个示例,如果我想向所有URL添加myCustomVar
的话,会是什么样子:
{
"version": "0.2.0",
"myCustomVar": "my_value",
"configurations": [
{
"name": "Page 1",
"type": "chrome",
"request": "launch",
"url": "http://localhost/page1.html?customVar=${myCustomVar}",
"sourceMaps": true,
"webRoot": "${workspaceFolder}/dev"
},
{
"name": "Page 2",
"type": "chrome",
"request": "launch",
"url": "http://localhost/page2.html?customVar=${myCustomVar}",
"sourceMaps": true,
"webRoot": "${workspaceFolder}/dev"
}
}
答案 0 :(得分:0)
Input variables可能有用吗?
否则,您应该能够将自定义设置添加到VS Code settings.json文件中(它会警告您有关“未知配置设置”的信息),并使用${config:myCustomVar}
插入它们。