-
Node.js Drizzle PostgreSQL bigint 类型
bigint() bigint({mode: "bigint"}),传入mode属性,指定bigint或number import { bigint, pgTable, timestamp } fr
-
Node.js Drizzle orderBy 升序、降序、联合排序
orderBy() 使用typeof、$inferSelect提取表结构的类型。 升序 orderBy(columnName)等价于orderBy(asc(columnName)) const po
-
Node.js Drizzle 查询表结构返回的类型
$inferSelect 使用typeof、$inferSelect提取表结构的类型。 const posts = pgTable("post", { id: integer().prima
-
TypeScript Omit Pick Partial 的用法
Omit Omit<原类型, 要删除的键>,使用|选择多个键 interface User { name: string, age: number, password: st
2025-10-08, Views: 33 , Topics: TypeScript
-
TypeScript Record 特性
说明 类似于JavaScript中的Map。 与Map不同的是: Record遍历时先输出数字类型的字段,再输出字符类型的字段 Map遍历时按放入时的顺序输出。 Record<string, M
2025-10-07, Views: 33 , Topics: TypeScript
-
TypeScript 配置 script 脚本 CrossOrigin 从 .env 文件读取时报 TS2322 类型不匹配
原因 .env文件中配置的变量默认是string字符串类型。 TypeScript中script脚本标签中的CrossOrigin属性允许的值是anonymous、use-credentials、"
2025-10-06, Views: 37 , Topics: TypeScript 跨域
-
Vite 中编辑 vite.conf.ts process 报错
process 报错 原因:没有安装@types/node类型提示。 npm install @types/node -D 参考文档 https://vite.dev/config/
-
PostgreSQL 按月统计数据
需求 统计从年初到当前月的每月数据。 如果是历年数据则完整统计1-12月,如果是今年数据则统计1到当前月(如:1-10月)。 generate_series 使用PostgreSQL的内置方法gen
2025-10-04, Views: 52 , Topics: PostgreSQL
-
CSS 使用 flex-shrink 0 解决 flex 1 布局中元素设置的高度不生效问题
现象 代码 .container { flex: 1; overflow-y: scroll; } 原因 flex: 1依赖容器高度,没有容器高度,flex: 1会无限拉伸,把元素
2025-10-03, Views: 49 , Topics: CSS
-
Tailwind CSS 在微信开发者工具中不生效问题
现象 前端使用了Tailwind4开发网页应用H5,在原生浏览器和手机浏览器都生效,但是在微信开发者工具中,Tailwind的样式都不生效。 原因 Tailwind CSS默认使用了CSS的@lay
-
Linux watch + PostgreSQL 一行命令实现数据每秒实时监控
相关命令 Linux中的watch PostgreSQL的psql 命令 watch -n指定间隔执行命令的秒数。 psql -U指定使用哪个数据库的用户。 psql -d指定连接哪个数据库。
2025-10-01, Views: 69 , Topics: PostgreSQL Linux psql
-
Spring Boot Jackson 创建 JsonNode 对象
代码 使用ObjectMapper的createObjectNode方法创建对象类型JsonNode,使用createArrayNode方法创建数组类型JsonNode。 ObjectMapper
2025-09-30, Views: 95 , Topics: Jackson Spring Boot
-
Spring Boot Jackson No serializer found for class
Spring Boot Jackson No serializer found for class 错误信息 No serializer found for class xxx and no pr
2025-09-29, Views: 102 , Topics: Jackson Spring Boot
-
Spring Boot MyBatis-Plus setSql() 方法用法
自定义 SQL 片段 setSql(String setSql, Object... params) boolean success = pointsService.lambdaUpdate()
2025-09-28, Views: 116 , Topics: MyBatis-Plus Spring Boot
-
Ubuntu PostgreSQL 命令行 Backspace 删除显示 ^H 字符解决方法
现象 在Ubuntu系统中,使用psql命令进入PostgreSQL的命令行模式,想使用删除键,但显示的确实^H字符。 解决 编辑~/.bashrc文件 vim ~/.bashrc 在最后一行添加
2025-09-27, Views: 138 , Topics: Ubuntu PostgreSQL
-
PostgreSQL 查看权限及 Access privileges 含义
\z Access privileges格式为grantee=privileges/grantor,即:被授予权限的角色=具体权限的缩写标识符/授予该权限的角色。 arwdDxt: - a(a
2025-09-26, Views: 159 , Topics: PostgreSQL
-
PostgreSQL 随机生成指定时间段内的一个时间
早上9点到中午12点之间 select current_date::timestamptz + interval '9 hour' + random() * 3 * interval '1 hour
2025-09-25, Views: 182 , Topics: PostgreSQL
-
acme.sh 移除颁发的证书
remove acme.sh --remove -d test.example.com 输出 root@local:~# acme.sh --remove -d test.example.com
-
acme.sh 使用 Let's Encrypt 颁发 HTTPS 证书
设置默认 CA acme.sh --set-default-ca --server letsencrypt 命令 acme.sh --issue -d test.example.com -w /v
2025-09-23, Views: 234 , Topics: acme.sh HTTPS Let's Encrypt
-
acme.sh 颁发 HTTPS 证书时更换 CA 机构
CA ZeroSSL(acme.sh 3.0版本默认的CA机构) Let's Encrypt Google --server 使用--server指定CA机构 acme.sh --issue -