上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页
2023年12月28日
摘要: export type FileSelectorType = { emit: boolean; type: "file" | "dir"; callBack: (path: string, fileList: FileList) => void; }; export const FileSelect 阅读全文
posted @ 2023-12-28 16:28 laremehpe 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 下载php: http://windows.php.net/download/ 添加环境变量: 配置php.ini文件 如果没有php.ini文件则可以复制php.ini-development文件重命名为php.ini文件 找到doc_root 修改为 项目文件夹注意不要用反斜杠作为路径分隔符 ( 阅读全文
posted @ 2023-12-28 10:42 laremehpe 阅读(106) 评论(0) 推荐(0) 编辑
2023年12月24日
摘要: require伪代码: // import fs from "fs"; var cache = {}; function require(modulePath) { //1.根据传入的模块路径获取绝对路径 用绝对路径作为id var moduleId = getModuleId(modulePath 阅读全文
posted @ 2023-12-24 00:45 laremehpe 阅读(12) 评论(0) 推荐(0) 编辑
2023年12月19日
摘要: import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import pojo.Id3v1; import pojo.Id3v2; import java.io.*; import 阅读全文
posted @ 2023-12-19 22:54 laremehpe 阅读(68) 评论(0) 推荐(0) 编辑
2023年12月11日
摘要: const fs = require("fs"); const delDir = (dir) => { if (!fs.existsSync(dir)) { throw new Error("dir does not exist!"); } const list = fs.readdirSync(d 阅读全文
posted @ 2023-12-11 13:56 laremehpe 阅读(121) 评论(0) 推荐(0) 编辑
2023年12月9日
摘要: 阅读全文
posted @ 2023-12-09 14:18 laremehpe 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 垂直居中:vertical-align : 1、只能作用在子元素 display 值为 inline,inline-block,inline-table,table-cell 的元素上, 2、子元素 设置vertical-align 3、父元素高度是由line-height决定(不要乱给父元素添加h 阅读全文
posted @ 2023-12-09 10:52 laremehpe 阅读(1) 评论(0) 推荐(0) 编辑
摘要: // ==UserScript== // @name csdn // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @ 阅读全文
posted @ 2023-12-09 00:06 laremehpe 阅读(115) 评论(0) 推荐(0) 编辑
2023年11月30日
摘要: use mysql -- 查看用户 select host,user from user;-- 更新hostupdate user set host='%' where user='laremehpe';-- 授予laremehpe用户 user表的查看、添加、更新权限grant select,in 阅读全文
posted @ 2023-11-30 10:57 laremehpe 阅读(5) 评论(0) 推荐(0) 编辑
2023年11月24日
摘要: .textBox { font-family: "Microsoft YaHei"; font-size: 28px; font-weight: bold; white-space: nowrap; line-height: 40px; background: linear-gradient( 30 阅读全文
posted @ 2023-11-24 17:48 laremehpe 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页