摘要: https://juejin.cn/post/6997664377155354654 阅读全文
posted @ 2022-05-09 17:05 孤舟浮岸 阅读(14) 评论(0) 推荐(0)
摘要: 意思是用户root2没有对testdb数据库的相关操作权限 解决办法(在navicat上授予权限): 在navicat上,找到用户,找到root2用户,双击,从常规点击到权限,添加权限,找到testdb数据库,勾上增删改查的权限,保存. OK 阅读全文
posted @ 2022-05-09 16:42 孤舟浮岸 阅读(178) 评论(0) 推荐(0)
摘要: 之前的数据库操作代码 import pymysql class DAO_recruit_page: def __init__(self): pass def add(self, rec_year, rec_content, rec_uni_name): # 打开数据库连接 db = self.get 阅读全文
posted @ 2022-05-09 16:28 孤舟浮岸 阅读(225) 评论(0) 推荐(0)
摘要: http://www.coolpython.net/flask_tutorial/index.html https://blog.csdn.net/Littleflowers/article/details/113926184 https://zhuanlan.zhihu.com/p/1482858 阅读全文
posted @ 2022-05-09 13:52 孤舟浮岸 阅读(128) 评论(0) 推荐(0)
摘要: from selenium import webdriver import random driver = webdriver.Chrome() driver.get( "https://www.amazon.co.jp/-/zh/ap/signin?openid.pape.max_auth_age 阅读全文
posted @ 2022-05-09 10:59 孤舟浮岸 阅读(122) 评论(0) 推荐(0)