江jh 2020-03-02 11:00 采纳率: 87.5%
浏览 1341
已采纳

求助:vs code ”Session-1 timed out waiting for debuggee to spawn“解决

图片说明

试过网上改launch.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": "chrome",
        "request": "launch",
        "name": "Launch Chrome against localhost",
        "url": "${file}",
        "sourceMaps": true, 
        "webRoot": "${workspaceRoot}"
    },
     {
        "name": "nodeLauch", //单独调试js,即可以直接运行js
        "type": "node",
        "request": "launch",
        "program": "${file}", //这个配置成你要调试的文件、${file}当前打开的文件
        "stopOnEntry": false,
        "args": [],
        "cwd": "${workspaceRoot}",
        "runtimeExecutable": null,
        "runtimeArgs": [
            "--nolazy"
        ],
        "env": {
            "NODE_ENV": "development"
        },
        "console": "internalConsole",
        "preLaunchTask": "",
        "sourceMaps": false
    }
]


但仍会报错

  • 写回答

1条回答 默认 最新

报告相同问题?

悬赏问题

  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮