django项目 bug记录

1、网页前端发送的所有指令都无效

解决:打开网页,f12,点击按钮,发现有报错:Uncaught TypeError: Cannot read properties of null (reading 'style') at HTMLInputElement.<anonymous> (main.js:123)

错误原因:在html界面删东西时把一个图标的信息删了,导致js找不到信息,失败了,加上就好了。

2、pycharm的搜索啥都搜不到

解决:检查文件索引设置。确保项目中的所有文件都被正确索引:

在 PyCharm 中,点击 File 菜单。

选择file properties-> Project Structure

添加路径

3、下载依赖库

pip install -r requirements.txt --index-url   http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

ERROR: HTTP error 502 while getting http://pypi.douban.com/simple/
ERROR: Could not install requirement http://pypi.douban.com/simple/ because of HTTP error 502 Server Error: Bad Gateway for url: http://pypi.douban.com/simple/ for URL http://pypi.douban.com/simple/
豆瓣镜像关了

pip.ini位置:C:\Users\96584\AppData\Roaming\pip

最后关vpn,用清华源解决

pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/

相关推荐

  1. django项目 bug记录

    2024-07-18 18:14:04       26 阅读
  2. bug 记录

    2024-07-18 18:14:04       50 阅读
  3. mmcv bug记录

    2024-07-18 18:14:04       35 阅读
  4. golang 锁bug 记录

    2024-07-18 18:14:04       29 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-18 18:14:04       70 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-18 18:14:04       74 阅读
  3. 在Django里面运行非项目文件

    2024-07-18 18:14:04       62 阅读
  4. Python语言-面向对象

    2024-07-18 18:14:04       72 阅读

热门阅读

  1. Reflect使用的一些总结

    2024-07-18 18:14:04       16 阅读
  2. day02.09.逻辑运算符·二

    2024-07-18 18:14:04       24 阅读
  3. NSGA和MOGA 算法的异同点

    2024-07-18 18:14:04       24 阅读
  4. linux中创建一个循环定时器(C++)

    2024-07-18 18:14:04       23 阅读
  5. 关于HDFS、Hive和Iceberg

    2024-07-18 18:14:04       22 阅读
  6. Leetcode 3218. Minimum Cost for Cutting Cake I

    2024-07-18 18:14:04       23 阅读