上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 214 下一页
摘要: 一,安装依赖 官方文档: https://devguide.python.org/getting-started/setup-building/#install-dependencies 安装: dnf install git pkg-config dnf install dnf-plugins-c 阅读全文
posted @ 2026-04-25 07:11 刘宏缔的架构森林 阅读(114) 评论(0) 推荐(0)
摘要: 一,报错信息: sqlalchemy.exc.OperationalError: (MySQLdb.OperationalError) (1138, 'Invalid use of NULL value') [SQL: ALTER TABLE enterprise MODIFY pay_status 阅读全文
posted @ 2026-04-25 07:11 刘宏缔的架构森林 阅读(12) 评论(0) 推荐(0)
摘要: 一,报错信息: upstream prematurely closed connection while reading response header from upstream 二,解决: 后端flask没能正常返回,经排查后是当前接口使用了redis,而.env中针对redis的配置错误 阅读全文
posted @ 2026-04-25 07:10 刘宏缔的架构森林 阅读(11) 评论(0) 推荐(0)
摘要: 一,例子: def user_center(): """ 用户中心 tags: - 用户 description: 用户中心 responses: 200: description: 成功 schema: properties: status: type: integer description: 阅读全文
posted @ 2026-04-25 07:10 刘宏缔的架构森林 阅读(10) 评论(0) 推荐(0)
摘要: 一,安装第三方库: pip install flasgger 二,初始化: 配置 SWAGGER_CONFIG = { "title": "企业库-接口文档", "description": "接口文档", "headers": [], "specs": [ { "endpoint": "docs" 阅读全文
posted @ 2026-04-25 07:09 刘宏缔的架构森林 阅读(16) 评论(0) 推荐(0)
摘要: 一,代码: 引入相关的库 <!-- import vue --> <script src="https://unpkg.com/vue@3.5.32/dist/vue.global.js"></script> <!-- import CSS --> <link rel="stylesheet" hr 阅读全文
posted @ 2026-04-25 07:08 刘宏缔的架构森林 阅读(11) 评论(0) 推荐(0)
摘要: 一,示例代码: <!-- 局部位置 A --> <div id="part-a"> <el-rate v-model="val"></el-rate> </div> <!-- 中间隔了很多原生代码... --> <!-- 局部位置 B --> <div id="part-b"> <el-tag ty 阅读全文
posted @ 2026-04-25 07:07 刘宏缔的架构森林 阅读(14) 评论(0) 推荐(0)
摘要: 一,报错信息: /usr/local/source/php-5.5.23/ext/iconv/iconv.c:1100: undefined reference to `libiconv_open' /usr/local/source/php-5.5.23/ext/iconv/iconv.c:111 阅读全文
posted @ 2026-04-11 10:43 刘宏缔的架构森林 阅读(17) 评论(0) 推荐(0)
摘要: 一,代码: import SwiftUI struct ContentView3: View { @State private var selectedTab = 0 var body: some View { ZStack(alignment: .bottom) { // 使用 Page 样式实现 阅读全文
posted @ 2026-04-11 10:43 刘宏缔的架构森林 阅读(20) 评论(0) 推荐(0)
摘要: 一,代码: router import SwiftUI // 1. 定义所有可能的页面路径 enum Route: Hashable { case home case list case detail(item: String) // 详情页通常需要传参 case login case info(u 阅读全文
posted @ 2026-04-07 17:16 刘宏缔的架构森林 阅读(11) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 214 下一页