我想在nodejs创建子进程以调试python代码后立即跳转到python代码
Server.js:
const spawn = require("child_process").spawn;
const pythonProcess = spawn('python',["MyPythonFile.py"]);
console.log("Finished!")
my Python file.朋友:
print("First line I'd like to debug")
print("Second line I'd like to debug")
print("Third line I'd like to debug")
Server.js和MyPythonFile.py都在同一个目录中有没有办法告诉visual studio代码将python文件附加到调试器或为python代码创建一个新的调试器实例?
您可以尝试将脚本调试为remote debugging情况。如果您愿意在VS代码之外启动服务,您可以像local script一样附加到它。