因此,我创建了一个名为“ Node Projects”的新文件夹,并将其添加到VS Code的“ Workspace”中。然后,我创建了两个示例文件,分别称为“ test.js”和“ test2.js”。在这些文件中,我仅需一个日志命令即可确定正在运行的文件。
运行test.js时,出现错误消息“属性'program'不存在(C:\ Users \ MyName \ Documents \ NodeProjects / Node Projects / test.js',所以我单击“打开启动.json”按钮,然后看到以下内容:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/Node Projects\\test.js"
}
]
}
根据我在stackoverflow上的搜索,我认为问题出在“程序”行,因此我继续将其更改为
"program": "${workspaceFolder}\\test.js"
所以现在,当我执行F5时,调试器将运行test.js,这很棒。但是因为test.js值是硬编码的,所以即使我在编辑器上打开test2.js并执行F5,它也会再次运行test.js!因此,我尝试从launch.json中删除文件名(即test.js)。但是现在当我尝试运行文件时,出现了“无法启动程序”错误。哦,删除launch.json还是没有帮助(它只是重新创建了初始的launch.json文件,我回到了第一个)。
答案 0 :(得分:4)
尝试一下,
“ program”:“ $ {file}”
$ {file}是VS Code中当前打开文件的预定义变量。 参见https://code.visualstudio.com/docs/editor/variables-reference
答案 1 :(得分:1)
添加另一个密钥“ cwd”,它对我有用。
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/xxx/xxx.js",
"cwd": "${workspaceFolder}"
}
]