摘要: 概括 1)客户端调用 InitUploadFileUrl(fileName, fileSize, contentType) 服务端向 MinIO 发起分片会话(拿到 UploadId 和最终对象 Key),按固定分片大小(6MB)生成每一片的预签名 PUT URL 列表并返回(含每片的 PartNu 阅读全文
posted @ 2026-05-03 23:10 爱晒太阳的懒猫。。 阅读(3) 评论(0) 推荐(0)
摘要: 使用using后不必要使用await fileStream.FlushAsync();,因为内部自带 合并文件,手动创建一个可写的文件流,把内容写入即可 toolName: view_files status: success filePath: d:\ceshi\MedicTechServer\M 阅读全文
posted @ 2026-05-03 23:09 爱晒太阳的懒猫。。 阅读(4) 评论(0) 推荐(0)
摘要: <div class="responsive-grid"> <div class="grid-card"> <h3>卡片 1</h3> <p>内容描述</p> </div> <div class="grid-card"> <h3>卡片 2</h3> <p>内容描述</p> </div> <div c 阅读全文
posted @ 2026-04-12 12:26 爱晒太阳的懒猫。。 阅读(7) 评论(0) 推荐(0)
摘要: <div class="form-item"> <label>用户名:</label> <input type="text" placeholder="请输入"> </div> <div class="form-item"> <label>密码:</label> <input type="passw 阅读全文
posted @ 2026-04-11 23:31 爱晒太阳的懒猫。。 阅读(3) 评论(0) 推荐(0)
摘要: <div class="grid"> <div class="item">1</div> <div class="item">2</div> <div class="item">3</div> <div class="item">4</div> <div class="item">5</div> < 阅读全文
posted @ 2026-04-11 23:30 爱晒太阳的懒猫。。 阅读(5) 评论(0) 推荐(0)
摘要: <div class="card-list"> <div class="card"> <h3>标题 1</h3> <p>内容比较短的文字。</p> <button>购买</button> </div> <div class="card"> <h3>标题 2</h3> <p>内容非常非常长,占据了多行 阅读全文
posted @ 2026-04-11 23:28 爱晒太阳的懒猫。。 阅读(4) 评论(0) 推荐(0)
摘要: <header class="navbar"> <div class="logo">🍔 我的网站</div> <nav> <a href="#">首页</a> <a href="#">关于</a> <a href="#">设置</a> </nav> </header> <style> .navba 阅读全文
posted @ 2026-04-11 15:29 爱晒太阳的懒猫。。 阅读(3) 评论(0) 推荐(0)
摘要: <div class="container"> <div class="box">登录弹窗内容</div> </div> <style> .container { display: flex; /* 水平居中 */ justify-content: center; /* 垂直居中 */ align- 阅读全文
posted @ 2026-04-11 15:08 爱晒太阳的懒猫。。 阅读(5) 评论(0) 推荐(0)
摘要: 项目相关的快捷键 Ctrl + Shift + B = 生成项目 Ctrl + Alt + L = 显示Solution Explorer(解决方案资源管理器) Shift + Alt+ C = 添加新类 Shift + Alt + A = 添加新项目到项目 编辑相关的键盘快捷键 Ctrl + En 阅读全文
posted @ 2026-04-10 15:08 爱晒太阳的懒猫。。 阅读(10) 评论(0) 推荐(0)
摘要: 1.为了在样式表里覆盖行内声明(html标签中的style),需要为声明添加!important,这样能将它提升到一个更高优先级的来源。 但如果行内样式也被标记为!important,就无法覆盖它了。最好是只在样式表内用!important。将以上修改撤销,我们来看看更好的方式 2.前端开发中尽量避 阅读全文
posted @ 2026-04-10 10:26 爱晒太阳的懒猫。。 阅读(4) 评论(0) 推荐(0)