上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 186 下一页
摘要: 一,最新版的下载地址: https://googlechromelabs.github.io/chrome-for-testing/ 如图: 二,较旧版本(115以下)的driver下载: https://chromedriver.storage.googleapis.com/index.html 阅读全文
posted @ 2025-12-02 21:17 刘宏缔的架构森林 阅读(851) 评论(0) 推荐(0)
摘要: 一,报错信息: mysqldump -h localhost -u liushifu -p liubase wines > wines.sql Enter password: Warning: A partial dump from a server that has GTIDs will by d 阅读全文
posted @ 2025-12-02 11:27 刘宏缔的架构森林 阅读(67) 评论(0) 推荐(0)
摘要: 一,报错信息: pymysql.err.OperationalError: (1138, 'Invalid use of NULL value') 原因: 数据库中已经有了值为null的数据时, 此时再把此字段修改成nullable=False 就会报这个错误 二,解决方法之一: 删除字段重新添加 阅读全文
posted @ 2025-12-01 12:45 刘宏缔的架构森林 阅读(24) 评论(0) 推荐(0)
摘要: 一,报错信息: ERROR [flask_migrate] Error: Target database is not up to date. 二,原因: heads和current不一致 $ flask db heads 81c8f6bda7e0 (head) $ flask db current 阅读全文
posted @ 2025-12-01 12:44 刘宏缔的架构森林 阅读(30) 评论(0) 推荐(0)
摘要: 一,代码: print("接收到的参数:") all_data = request.values.to_dict() print(all_data) print("接收到的参数1:") form_data = request.form.to_dict() print(form_data) 二,测试效 阅读全文
posted @ 2025-11-26 15:19 刘宏缔的架构森林 阅读(13) 评论(0) 推荐(0)
摘要: 一,创建脚本: $ flask db migrate -m "测试subjects表" 输出信息中显示了migrate脚本的位置 NFO [alembic.autogenerate.compare] Detected added table 'subjects' INFO [alembic.auto 阅读全文
posted @ 2025-11-26 12:56 刘宏缔的架构森林 阅读(15) 评论(0) 推荐(0)
摘要: 一,单个字段创建主键索引 id = db.Column(db.Integer, primary_key=True, autoincrement=True) 二,单个字段创建唯一索引 serial_no = db.Column(db.String(20), unique=True, nullable= 阅读全文
posted @ 2025-11-26 10:05 刘宏缔的架构森林 阅读(9) 评论(0) 推荐(0)
摘要: 一,代码: from selenium import webdriver from selenium.webdriver.chrome.options import Options from selenium.webdriver.chrome.service import Service from 阅读全文
posted @ 2025-11-24 19:00 刘宏缔的架构森林 阅读(15) 评论(0) 推荐(0)
摘要: 一,代码: from selenium import webdriver from selenium.webdriver.chrome.options import Options from selenium.webdriver.chrome.service import Service from 阅读全文
posted @ 2025-11-24 18:22 刘宏缔的架构森林 阅读(46) 评论(0) 推荐(0)
摘要: 一,代码: import base64 from ddddocr import DdddOcr import numpy as np from PIL import Image import io from PIL import Image, ImageFilter from io import B 阅读全文
posted @ 2025-11-24 15:07 刘宏缔的架构森林 阅读(56) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 186 下一页