摘要: 1. 安装iis服务 2. 在站点的服务器证书中新建一个自签名证书,傻瓜式新建 3. 编辑该站点的绑定,新建https类型的服务,选择证书为2中新建的证书 4. 重启iis 阅读全文
posted @ 2021-08-05 19:40 范若若 阅读(59) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/article/dca1fa6fa65406b0a4405293.html 阅读全文
posted @ 2021-07-27 19:31 范若若 阅读(125) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zhuzhu1214/p/11540008.html 阅读全文
posted @ 2021-07-27 19:13 范若若 阅读(53) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/yyxianren/p/10839373.html 阅读全文
posted @ 2021-07-26 11:42 范若若 阅读(49) 评论(0) 推荐(0) 编辑
摘要: class fun(obj): def __init__(self): self.name="王" self.__age="10" def get(self): return self.__age f = fun() f.name = "老王" #可以访问到实例变量,但是访问不到self.__age 阅读全文
posted @ 2021-06-19 10:33 范若若 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 1.安装wget https://www.imooc.com/article/17781 2.安装netstat yum -y install net-tools 阅读全文
posted @ 2021-05-31 12:25 范若若 阅读(422) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/lin434406218/article/details/54694900 阅读全文
posted @ 2021-04-28 14:41 范若若 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 原因解释:这是mysql事务隔离的结果,InnoDB默认的隔离级别是可重复读(REPEATABLE READ),也就是在同一个事务中读取的值总是一样。所以为了感知到变化,必须重新获取一个事务(比方说关闭conneciton重新获取,或者调用commit,也可以改变mysql的事务隔离级别到READ 阅读全文
posted @ 2021-04-16 10:09 范若若 阅读(140) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/cobbliu/p/3872255.html 阅读全文
posted @ 2021-04-12 12:54 范若若 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 用flask开发web网站时,遇到下面的报错 sqlalchemy.exc.ArgumentError: Mapper mapped class Result->result could not assemble any primary key 解决:按照报错字面的意思,和主键有关,最后发现是我要操 阅读全文
posted @ 2021-04-05 20:21 范若若 阅读(1789) 评论(0) 推荐(1) 编辑