工作成果 C端平台构建(2024.11.25-2025-12.16) 采用Next.js全栈+前后端分离架构。数据服务在后端,页面首次加载采用ssg,由server端请求后端api数据、后续客户端增量请求由客户端直接请求后端api获取数据。 auth部分复刻了Auth.js(middleware...
How to fix it /* If your code is like this in global.css */ @layer base { :root { --background: 0 0% 100%; --foreground: 222.2...
How to fix it Just add a rule in lint file. // .eslintrc "rules": { /** ... **/ "tailwindcss/no-custom-classname": "off" }, Why do...
A few days ago, I had a fucking dream that useActionState can use yield to push data. It was probably that state was an array []. Every time data was...
前言 Javascript 整数表达最大为 2^53-1 位,大约是十进制16位,超过就会导致精度丢失,一般在浏览器中会直接报错。 场景 我们知道,雪花算法(SnowFlake)生成的雪花ID是 2^64...
How to accept a xlsx file and read it using Fastapi, the following is the implementation code. @application.post("/uploadFile/") async def...