什么是用于调试Django自定义命令的VS代码配置?

问题描述 投票:1回答:1

我正在使用Visual Studio Code IDE来开发,调试Django项目。我几乎没有管理自定义命令,也不知道如何从VS Code调试该代码。我尝试了不同的配置,但是没有用。

我尝试过的配置是

        {
            "name": "Python: Module",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}/manage.py",
            "args": [
                "send_daily",              
            ],
            "console": "integratedTerminal"
        },

此配置不会在我设置的断点处停止。

我希望调试器在自定义命令代码中设置的断点处启动并停止执行。

django debugging configuration visual-studio-code command
1个回答
0
投票

我认为您可能需要将'django':true作为字段添加到配置中

© www.soinside.com 2019 - 2024. All rights reserved.