会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
首页
|
我的博客
|
查看该博主内容分类
|
搜 索
面向对象编程
让学习进步成为一种习惯
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
9
10
11
12
13
2022年9月21日
Failed to download 'https://github.com/xerial/sqlite-jdbc/releases/download/3.39.2.0/sqlite-jdbc-3.39.2.0.jar': Connection timed out: connect SQLite下载报错解决办法
摘要: 1. 原因 外网原因无法下载 2. 解决办法 下载sqlite-jdbc-3.39.2.0.jar,放这个目录下:C:\用户\你的用户名\AppData\Roaming\JetBrains\PyCharm2021.1\jdbc-drivers\Xerial SQLiteJDBC\3.39.2,3.3
阅读全文
posted @ 2022-09-21 15:03 Z哎呀
阅读(1499)
评论(0)
推荐(2)
2022年9月20日
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='localhost', port=33276): Max retries exceeded with url: /session/b863f5113929b9bf00b47ded7bfd7a97/refresh报错解决办法
摘要: 1. 原因 可能是浏览器已经提前退出,但此时selenium又尝试使用该浏览器而报错 2. 解决办法 排查代码是否在浏览器退出后,是否又引用了浏览器。
阅读全文
posted @ 2022-09-20 10:38 Z哎呀
阅读(1735)
评论(0)
推荐(0)
2022年9月19日
You're accessing the development server over HTTPS, but it only supports HTTP. https ssl证书报错解决办法
摘要: 1. 安装https支持包 pip3 install django-extensions pip3 install django-werkzeug-debugger-runserver pip3 install pyOpenSSL 2. 在settings中添加 INSTALLED_APPS = [
阅读全文
posted @ 2022-09-19 21:11 Z哎呀
阅读(1184)
评论(0)
推荐(0)
2022年9月17日
pymysql.err.InternalError: Packet sequence number wrong - got 45 expected 0 django使用多线程造成的数据库错误
摘要: 1. 原因: 使用了多线程,多线程共享了同一个数据库连接,但每个execute前没有加上互斥锁 2. 方法: 方法一:每个execute前加上互斥锁 lock.acquire() cursor.execute(command,data) lock.release() 方法二: 每个线程拥有自己的数据
阅读全文
posted @ 2022-09-17 15:34 Z哎呀
阅读(939)
评论(0)
推荐(0)
django.db.utils.InternalError: Packet sequence number wrong - got 1 expected django使用异步报错解决方案
摘要: 1. 使用连接池 pip install django-db-connection-pool DATABASES = { 'default': { # 'ENGINE': 'django.db.backends.mysql', 'ENGINE': 'dj_db_conn_pool.backends.
阅读全文
posted @ 2022-09-17 15:17 Z哎呀
阅读(925)
评论(0)
推荐(0)
2022年9月15日
nginx+uwsgi部署django项目时,无法访问可能的原因
摘要: nginx配置文件未配置正确 server_name = xx.xx.xx.xx # 注意地址是否正确 # 注意配置的端口号,端口80时可省略端口:xx.xx.xx.xx[:80] listen 80 # 注意路由转发端口是nginx端口,不是uwsgi转发端口(如8000) <-- 错的较多 lo
阅读全文
posted @ 2022-09-15 23:10 Z哎呀
阅读(1368)
评论(0)
推荐(0)
django.core.exceptions.SynchronousOnlyOperation: You cannot call this from an async context - use a thread or sync_to_async.djang使用异步报错解决办法
摘要: 在settings.py加上: os.environ['DJANGO_ALLOW_ASYNC_UNSAFE'] = 'true' 允许异步模式
阅读全文
posted @ 2022-09-15 22:19 Z哎呀
阅读(1410)
评论(0)
推荐(0)
2022年9月13日
本地django项目,Bootstrap排版显示效果混乱,CSS样式不起作用原因分析及解决方案
摘要: 原因分析: Bootstrap只要正常引用了样式文件(可通过点击样式连接查看是否能打开),或者本地文件引用的情况下,要注意样式引用的地址是否正确,在django中常见原因是地址引用错误。 如下html的引用: <!-- Bootstrap CSS--> <link rel="stylesheet"
阅读全文
posted @ 2022-09-13 19:15 Z哎呀
阅读(1233)
评论(0)
推荐(0)
2022年9月11日
The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed. google-chrome浏览器启动报错解决方案
摘要: 主要是selenium在线上部署时常见的google-chrome问题,只要加上一些配置即可。 option.add_argument('--no-sandbox') option.add_argument('--disable-dev-shm-usage') option.add_argument
阅读全文
posted @ 2022-09-11 14:33 Z哎呀
阅读(4105)
评论(0)
推荐(2)
上一页
1
···
9
10
11
12
13
公告