gpt4 book ai didi

visual-studio-code - 启动设置中的 VSCode 自定义变量?

转载 作者:行者123 更新时间:2023-12-03 14:56:38 24 4
gpt4 key购买 nike

有没有办法添加我可以在 launch.json 中使用的自定义变量?在 VSCode 中调试的设置?目前,我发现的唯一方法是将它们添加到我的工作区设置并引用 ${config} predefined variable .

我想在 launch.json 中定义变量/属性并使用它们。这是一个示例,说明如果我想添加 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"
}
}

最佳答案

Input variables可能有用吗?

否则,您应该能够将自定义设置添加到您的 VS Code settings.json 文件(它会警告您“未知配置设置”)并使用 ${config:myCustomVar} 插入它们。 .

关于visual-studio-code - 启动设置中的 VSCode 自定义变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53206904/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com