摘要: [{"name":"言溪题库","homepage":"https://tk.enncy.cn/","url":"https://tk.enncy.cn/query","method":"get","type":"GM_xmlhttpRequest","contentType":"json","da 阅读全文
posted @ 2023-05-25 14:47 仟浊Cc 阅读(17196) 评论(0) 推荐(0) 编辑
摘要: #外联绑定 1.对象绑定: v-bind:class="classobject" 2数组绑定: v-bind:class="[class1,class2]" #内联绑定 <p v-bind:style="fontWeight:weight,color:color"> #非内联 <p v-bind:s 阅读全文
posted @ 2023-04-10 15:35 仟浊Cc 阅读(33) 评论(0) 推荐(0) 编辑
摘要: from time import sleepfrom selenium import webdriverfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.chrome.options import Optionsop 阅读全文
posted @ 2023-03-15 17:25 仟浊Cc 阅读(116) 评论(0) 推荐(0) 编辑
摘要: from time import sleepfrom selenium import webdriver #1. 导入webdriver#导入键盘包from selenium.webdriver import Keys#导入鼠标包from selenium.webdriver import Acti 阅读全文
posted @ 2023-03-08 17:39 仟浊Cc 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1、进入C盘下mysql安装的bin目录下执行(执行前删除data文件) C:\mysql\bin 2、mysqld -install2、输入mysqld --initialize-insecure --user=mysql --explicit_defaults_for_timestamp 初始化 阅读全文
posted @ 2023-03-06 18:52 仟浊Cc 阅读(30) 评论(0) 推荐(0) 编辑
摘要: #成员类型转换 arr.astype(np.float_) #转换数组对象成员的类型为float,形状不变。 #形状转换 arr.resize(shape)#返回值是一个None,不能引用内部的属性 arr.reshape(shape)#修改原数组形状,不改变成员 arr.flatten()#对数组 阅读全文
posted @ 2023-02-27 11:37 仟浊Cc 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 三层模型 1,数据访问层 2,控制层 3,业务层 Spring配置文件设置: <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="htt 阅读全文
posted @ 2023-02-23 17:00 仟浊Cc 阅读(25) 评论(0) 推荐(0) 编辑
摘要: app.json: { "pages":[ "pages/index/index", "pages/home/home", "pages/msg/msg", "pages/logs/logs" ], "window":{ "backgroundTextStyle":"light", "navigat 阅读全文
posted @ 2023-02-23 08:41 仟浊Cc 阅读(131) 评论(0) 推荐(0) 编辑
摘要: import randomimport osimport pandas as pdimport time#excel转换vcf网址#https://xlsx2vcf.kefuxx.com/time_tuple = time.localtime(time.time())nowtime = "{}年{} 阅读全文
posted @ 2023-02-20 11:34 仟浊Cc 阅读(168) 评论(0) 推荐(0) 编辑
摘要: css: .box1{ margin: 20rpx auto; width: 100rpx; height: 100rpx; background-color: red; box-shadow: 3px 3px 4px black; } .box2{ margin: 20rpx auto; widt 阅读全文
posted @ 2023-02-16 11:39 仟浊Cc 阅读(9) 评论(0) 推荐(0) 编辑