json 示例Django配置launch.json VSCode(Visual Studio代码)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json 示例Django配置launch.json VSCode(Visual Studio代码)相关的知识,希望对你有一定的参考价值。

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Django",
      "type": "python",
      "request": "launch",
      "stopOnEntry": false,
      "pythonPath": "${workspaceRoot}/venv/bin/python3.4",
      "program": "${workspaceRoot}/manage.py",
        "args": [
            "runserver",
            "1818"
        ],
        "debugOptions": [
            "WaitOnAbnormalExit",
            "WaitOnNormalExit",
            "RedirectOutput",
            "DjangoDebugging"
        ],
        "env": {
            "DJANGO_DB_NAME": "aroounddb",
            "DJANGO_DB_USER": "codeslave",
            "DJANGO_DB_PASSWORD": "codeslave",
            "DJANGO_DB_HOST": "172.17.0.2",
            "DJANGO_DB_PORT": "5432",
            "DJANGO_DEBUG": "True",
            "DJANGO_SETTINGS_MODULE": "settings"
        }
    },
  ]
}

以上是关于json 示例Django配置launch.json VSCode(Visual Studio代码)的主要内容,如果未能解决你的问题,请参考以下文章

Django返回json数据用法示例

Django-模板中的Json数据

Django:使用 JSON 数据创建和保存模型

需要 Firebase JSON 的 Django 应用程序的 Heroku 配置?

在 Django 中返回 JSON 响应

django 在 json 中转义为 html