会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
首页
|
我的博客
|
查看该博主内容分类
|
搜 索
面向对象编程
让学习进步成为一种习惯
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
13
下一页
2024年4月15日
ElementClickInterceptedException Message: element click intercepted: Element ... 的解决办法
摘要: 解决办法 将原先的 button = driver.find_element_by_xpath('xpath') button.click() 替换为 button = driver.find_element_by_xpath('xpath') driver.execute_script('argu
阅读全文
posted @ 2024-04-15 13:53 Z哎呀
阅读(97)
评论(0)
推荐(0)
2024年3月29日
ValueError: Unable to configure handler 'operation_file'的解决办法
摘要: 解决办法 settings配置文件位置的改变,导致BASE_DIR改变,使得operation_file的filename路径改变,打印BASE_DIR的值,适当调整
阅读全文
posted @ 2024-03-29 09:46 Z哎呀
阅读(52)
评论(0)
推荐(0)
2024年3月18日
celery beat TypeError: string indices must be integers
摘要: 原因 可能原因1之语句错误:celery -A Xxx ... --shceduler ... 注意是shceduler这个单词,别错了 可能原因2之配置错误:是CELERY_BEAT_SCHEDULER 而不是 CELERY_BEAT_SCHEDULE 后面少了R
阅读全文
posted @ 2024-03-18 13:55 Z哎呀
阅读(47)
评论(0)
推荐(0)
2024年3月13日
celery Discarding revoked task: ... 的解决办法
摘要: 原因 你指定的任务出错了 解决办法 可以通过执行任务函数.delay()异步的方式执行函数来查看celery worker的反馈就可以知道具体错误
阅读全文
posted @ 2024-03-13 11:27 Z哎呀
阅读(108)
评论(0)
推荐(0)
MySQL backend does not support timezone-aware datetimes when USE_TZ is False的解决办法
摘要: 解决办法 settings中添加配置:DJANGO_CELERY_BEAT_TZ_AWARE = False
阅读全文
posted @ 2024-03-13 11:00 Z哎呀
阅读(110)
评论(0)
推荐(0)
celery ValueError: not enough values to unpack (expected 3, got 0)的解决办法
摘要: 原因 windows系统原因,需要指定使用多线程执行任务,加参数-P threads 解决办法 celery -A MyProject worker -l info加一个-P threads 所以,结果是celery -A MyProject worker -l info -P threads
阅读全文
posted @ 2024-03-13 11:00 Z哎呀
阅读(34)
评论(0)
推荐(0)
2024年2月7日
highcharts-vue组件 Uncaught SyntaxError unexpected token .
摘要: 原因 组件间版本不匹配 解决办法 指定组件版本(其一): npm install highcharts@11.1.0 npm install highcharts-vue@1.4.3
阅读全文
posted @ 2024-02-07 13:54 Z哎呀
阅读(36)
评论(0)
推荐(0)
2024年1月26日
Error: .ini file does not include supervisord section的解决办法
摘要: 原因 大概率是你的启动命令错了 解决办法 将启动命令复制到服务器执行成功后,再覆盖原先的 Tips:将supervisord.conf文件中的nodaemon 设置为true: nodaemon: true可以在启动supervisord服务时看到启动日志(上线记得改回)。
阅读全文
posted @ 2024-01-26 17:06 Z哎呀
阅读(727)
评论(0)
推荐(0)
2024年1月19日
使用refs.组件ref.方法 提示方法不存在或undefined(TypeError: Cannot read property 'xxx' of undefined)的解决办法
摘要: 原因 dom元素没有渲染完毕 解决办法 $nextTick 使用this.$nextTick可以等待dom元素渲染完毕后再操作,就不会找不到了,如: this.$nextTick(() => { // 在DOM元素渲染完成后,使el-input获取焦点 this.$refs.editInput.fo
阅读全文
posted @ 2024-01-19 11:45 Z哎呀
阅读(113)
评论(0)
推荐(0)
2024年1月6日
chromedriver谷歌浏览器驱动找不到116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142版本的解决办法?
摘要: 解决办法 已整理所有最新版本的谷歌浏览器驱动版本,详情查阅:chromedriver浏览器驱动各版本下载(原创)
阅读全文
posted @ 2024-01-06 11:45 Z哎呀
阅读(1413)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
13
下一页
公告