feat: 完善 WebUI basePath 支持并简化示例代码

主要改动:

1. WebUI basePath 逻辑完善
   - NewWebUI 支持可变参数 basePath
   - 新增 path() 辅助方法统一路径处理
   - handleTableAPI 正确处理 basePath 前缀
   - handleIndex 根据 basePath 替换占位符

2. 简化示例代码
   - 删除反向代理实现(111行)
   - 直接使用带 basePath 的 WebUI
   - 代码量减少 33%,架构更清晰

3. 前端优化
   - 新增 api.js 统一 API 服务层
   - 所有组件使用统一的 API 调用
   - 支持通过 window.API_BASE 配置 basePath

4. 修复 .gitignore
   - 使用通用模式支持 commands 目录
   - 无需为新示例项目修改配置
This commit is contained in:
2025-10-14 14:13:59 +08:00
parent 7ac4b99a9e
commit 30c3e74bd2
16 changed files with 222 additions and 68 deletions

View File

@@ -7,6 +7,7 @@ import (
"math/big"
"net/http"
"slices"
"strings"
"time"
"code.tczkiot.com/wlw/srdb"
@@ -110,14 +111,20 @@ func StartWebUI(dbPath string, addr string) {
// 启动后台数据插入协程
go autoInsertData(db)
// 启动 Web UI
handler := webui.NewWebUI(db)
// 创建 WebUI,使用 /debug 作为 basePath
ui := webui.NewWebUI(db, "/debug")
fmt.Printf("SRDB Web UI is running at http://%s\n", addr)
// 创建主路由
mux := http.NewServeMux()
// 挂载 WebUI 到根路径WebUI 内部会处理 /debug 前缀)
mux.Handle("/", ui)
fmt.Printf("SRDB Web UI is running at: http://%s/debug/\n", strings.TrimPrefix(addr, ":"))
fmt.Println("Press Ctrl+C to stop")
fmt.Println("Background data insertion is running...")
if err := http.ListenAndServe(addr, handler); err != nil {
if err := http.ListenAndServe(addr, mux); err != nil {
log.Fatal(err)
}
}