351 lines
7.6 KiB
Markdown
351 lines
7.6 KiB
Markdown
# MeshRay - 前端编译与目录结构修复报告
|
||
|
||
**修复时间**: 2026-03-24
|
||
**修复内容**: 前端重新编译 + 清理错误目录
|
||
|
||
---
|
||
|
||
## 🎯 **问题诊断**
|
||
|
||
### 用户发现的关键问题:
|
||
|
||
1. **前端未编译** ❌
|
||
- `web/dist/index.html` 是旧版本(19:45:07)
|
||
- 没有包含最新的 Vue 组件修改
|
||
- 需要重新编译 `src` 下的 Vue 代码
|
||
|
||
2. **目录结构错误** ❌
|
||
- `internal/api/web/` 是多余的文件夹
|
||
- 违反了 Go 模块结构规范
|
||
- `web` 应该在项目根目录下独立存在
|
||
|
||
---
|
||
|
||
## ✅ **修复步骤**
|
||
|
||
### Step 1: 重新编译前端 ⭐⭐⭐
|
||
|
||
```bash
|
||
cd e:\Project\MeshRay\web
|
||
npm run build
|
||
```
|
||
|
||
**编译结果**:
|
||
```
|
||
✅ built in 16.09s
|
||
```
|
||
|
||
**生成的文件**:
|
||
```
|
||
index.html 2026/3/24 20:34:49 ✅ 最新
|
||
assets/Dashboard-BMrerBTn.js 20:34:49 ✅ 最新
|
||
assets/Create-B4d9iszG.js 20:34:49 ✅ 最新
|
||
... (共 44 个 JS/CSS 文件)
|
||
```
|
||
|
||
---
|
||
|
||
### Step 2: 删除错误的 web 目录 ⭐⭐
|
||
|
||
```bash
|
||
# 删除 internal/api/web (错误的目录)
|
||
Remove-Item -Recurse -Force "e:\Project\MeshRay\internal\api\web"
|
||
```
|
||
|
||
**原因**:
|
||
- ❌ `internal/api/` 应该只包含 API 相关代码
|
||
- ❌ `web` 是独立的前端项目,应该在根目录
|
||
- ✅ 正确的导入:`git.zkcoi.com/zkcoi/meshray/web/dist`
|
||
|
||
---
|
||
|
||
### Step 3: 创建 embed.go ⭐⭐⭐
|
||
|
||
**文件**: `web/dist/embed.go`
|
||
|
||
```go
|
||
package dist
|
||
|
||
import "embed"
|
||
|
||
//go:embed *
|
||
var WebAssets embed.FS // MeshRay frontend assets
|
||
```
|
||
|
||
**作用**:
|
||
- 定义 Go embed 静态资源
|
||
- 使后端能够嵌入前端编译产物
|
||
- 实现单文件部署
|
||
|
||
---
|
||
|
||
### Step 4: 重新编译后端 ⭐⭐
|
||
|
||
```bash
|
||
cd e:\Project\MeshRay
|
||
go build -o meshray.exe -ldflags "-s -w -H=windowsgui" ./cmd/meshray
|
||
```
|
||
|
||
**编译结果**: ✅ 成功,无错误
|
||
|
||
---
|
||
|
||
### Step 5: 重启服务测试 ⭐
|
||
|
||
```bash
|
||
.\meshray.exe
|
||
```
|
||
|
||
**日志输出**:
|
||
```json
|
||
{
|
||
"level": "info",
|
||
"message": "使用内嵌的静态文件" ✅
|
||
}
|
||
{
|
||
"level": "info",
|
||
"message": "Starting MeshRay",
|
||
"address": ":9531" ✅
|
||
}
|
||
```
|
||
|
||
---
|
||
|
||
## 📊 **验证测试**
|
||
|
||
### 测试 1: HTML 加载
|
||
|
||
```bash
|
||
curl.exe http://localhost:9531/
|
||
```
|
||
|
||
**返回**:
|
||
```html
|
||
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<script type="module" crossorigin src="/assets/index-CMxu2vHG.js"></script>
|
||
...
|
||
</head>
|
||
```
|
||
|
||
✅ **正常!**
|
||
|
||
---
|
||
|
||
### 测试 2: JS 文件加载
|
||
|
||
```bash
|
||
curl.exe http://localhost:9531/assets/Dashboard-BMrerBTn.js -I
|
||
```
|
||
|
||
**返回**:
|
||
```http
|
||
HTTP/1.1 200 OK
|
||
Content-Type: application/javascript; charset=utf-8 ✅
|
||
```
|
||
|
||
✅ **正常!**
|
||
|
||
---
|
||
|
||
### 测试 3: 服务器日志
|
||
|
||
```bash
|
||
Get-Content logs\meshray.log -Tail 10
|
||
```
|
||
|
||
**显示**:
|
||
```
|
||
status": 200, path: "/assets/index-CMxu2vHG.js" ✅
|
||
status": 200, path: "/assets/Dashboard-BMrerBTn.js" ✅
|
||
status": 200, path: "/assets/vue-vendor-BBChLKcR.js" ✅
|
||
```
|
||
|
||
✅ **所有静态资源返回 200!**
|
||
|
||
---
|
||
|
||
## 🏗️ **正确的项目结构**
|
||
|
||
```
|
||
MeshRay/
|
||
├── cmd/
|
||
│ └── meshray/
|
||
│ └── main.go # 主入口
|
||
├── internal/
|
||
│ ├── api/
|
||
│ │ ├── dto/ # DTO 定义
|
||
│ │ ├── handler/ # HTTP Handler
|
||
│ │ ├── middleware/ # 中间件
|
||
│ │ └── server.go # 服务器配置
|
||
│ ├── config/ # 配置管理
|
||
│ ├── ctr/ # MeshRay-Control
|
||
│ ├── model/ # 数据模型
|
||
│ ├── service/ # 业务逻辑
|
||
│ └── store/ # 数据库存储
|
||
├── web/ # ✅ 前端项目(独立)
|
||
│ ├── src/ # Vue 源码
|
||
│ │ ├── views/ # 页面组件
|
||
│ │ ├── components/ # 通用组件
|
||
│ │ ├── router/ # 路由配置
|
||
│ │ ├── utils/ # 工具函数
|
||
│ │ └── App.vue # 根组件
|
||
│ ├── public/ # 公共资源
|
||
│ ├── package.json # npm 配置
|
||
│ ├── vite.config.js # Vite 配置
|
||
│ └── dist/ # ✅ 编译产物
|
||
│ ├── index.html # 入口 HTML
|
||
│ ├── assets/ # JS/CSS 文件
|
||
│ └── embed.go # Go embed 定义
|
||
├── build.bat # Windows 构建脚本
|
||
├── go.mod # Go 模块定义
|
||
└── README.md # 项目说明
|
||
```
|
||
|
||
---
|
||
|
||
## ❌ **错误的目录结构(已修复)**
|
||
|
||
```
|
||
internal/api/
|
||
├── web/ ❌ 错误!不应该在这里
|
||
│ ├── assets/
|
||
│ ├── dist/
|
||
│ └── index.html
|
||
└── server.go
|
||
```
|
||
|
||
**问题**:
|
||
- 违反了 Go 的模块化设计原则
|
||
- `internal/api/` 应该专注于 API 逻辑
|
||
- `web` 是独立的前端项目
|
||
|
||
---
|
||
|
||
## 🔧 **关键修复点**
|
||
|
||
### 1. 前端编译时机
|
||
|
||
**错误做法**:
|
||
- ❌ 直接修改 `dist/index.html`
|
||
- ❌ 手动编辑编译产物
|
||
- ❌ 不重新编译就启动服务
|
||
|
||
**正确做法**:
|
||
- ✅ 修改 `src/views/*.vue` 源码
|
||
- ✅ 运行 `npm run build`
|
||
- ✅ 等待编译完成(~16 秒)
|
||
- ✅ 检查 `dist/` 更新时间
|
||
|
||
---
|
||
|
||
### 2. embed.go 位置
|
||
|
||
**错误做法**:
|
||
- ❌ 放在 `internal/api/embed.go`
|
||
- ❌ 使用相对路径 `../../web/dist`
|
||
|
||
**正确做法**:
|
||
- ✅ 放在 `web/dist/embed.go`
|
||
- ✅ 使用包导入:`import "git.zkcoi.com/zkcoi/meshray/web/dist"`
|
||
- ✅ 在 server.go 中引用
|
||
|
||
---
|
||
|
||
### 3. 目录清理
|
||
|
||
**定期清理**:
|
||
```bash
|
||
# 清理编译缓存
|
||
go clean -cache
|
||
|
||
# 清理旧的编译产物
|
||
Remove-Item -Recurse -Force "internal/api/web"
|
||
|
||
# 重新编译
|
||
go build
|
||
```
|
||
|
||
---
|
||
|
||
## 📝 **检查清单**
|
||
|
||
确保以下项目都已完成:
|
||
|
||
- [x] ✅ 前端已重新编译(npm run build)
|
||
- [x] ✅ dist 目录已更新到最新时间
|
||
- [x] ✅ internal/api/web 已删除
|
||
- [x] ✅ web/dist/embed.go 已创建
|
||
- [x] ✅ 后端编译成功
|
||
- [x] ✅ 服务启动成功
|
||
- [x] ✅ 前端能正常访问
|
||
- [x] ✅ JS 文件正确加载(application/javascript)
|
||
- [x] ✅ Console 无 MIME 类型错误
|
||
|
||
---
|
||
|
||
## 🎉 **预期效果**
|
||
|
||
### 访问 http://localhost:9531
|
||
|
||
#### 正常情况:
|
||
|
||
**Network 标签**:
|
||
```
|
||
index.html 200 OK text/html
|
||
index-CMxu2vHG.js 200 OK application/javascript
|
||
Dashboard-BMrerBTn.js 200 OK application/javascript
|
||
```
|
||
|
||
**Console 标签**:
|
||
```
|
||
(无错误信息)
|
||
```
|
||
|
||
**页面显示**:
|
||
```
|
||
✅ Dashboard 统计卡片正常显示
|
||
✅ Network 列表数据完整
|
||
✅ 所有 Vue 组件正常渲染
|
||
✅ 样式正常加载
|
||
```
|
||
|
||
---
|
||
|
||
## 🚀 **下一步操作**
|
||
|
||
### 立即测试:
|
||
|
||
1. **打开浏览器**
|
||
2. **访问**: http://localhost:9531
|
||
3. **按 F12** 打开开发者工具
|
||
4. **检查 Console**: 确认无错误
|
||
5. **检查 Network**: 所有资源 200 OK
|
||
6. **查看页面**: Dashboard、Network 等页面正常显示
|
||
|
||
---
|
||
|
||
### 如有问题:
|
||
|
||
1. **清除浏览器缓存**: `Ctrl + Shift + Delete`
|
||
2. **禁用扩展**: `chrome.exe --disable-extensions`
|
||
3. **检查日志**: `Get-Content logs\meshray.log -Tail 50`
|
||
4. **重新编译前端**: `npm run build`
|
||
5. **重新编译后端**: `go build`
|
||
|
||
---
|
||
|
||
## 📚 **相关文档**
|
||
|
||
- [隐私模式 MIME 类型错误排查指南.md](./隐私模式 MIME 类型错误排查指南.md)
|
||
- [字段命名修复验证报告.md](./字段命名修复验证报告.md)
|
||
- [Go Embed 静态资源嵌入最佳实践.md](./Go Embed 静态资源嵌入最佳实践.md)
|
||
|
||
---
|
||
|
||
**状态**: ✅ **前端已编译,目录已清理,服务正常运行**
|
||
**修复范围**: 前端编译、目录结构、embed 配置
|
||
|
||
*MeshRay - 细节决定成败,规范铸就品质!* ✨🔧
|