This commit is contained in:
2026-07-16 17:54:03 +08:00
parent 9ba28f2f7c
commit 4806ca6bc0
9 changed files with 454 additions and 93 deletions
+41
View File
@@ -2,7 +2,11 @@ package main
import (
"context"
"encoding/base64"
"fmt"
"os"
"path/filepath"
"time"
)
// App struct
@@ -36,3 +40,40 @@ func (a *App) Register() string {
println("1111")
return ""
}
func (a *App) UploadImage(data []byte, filename string) ImageResult {
uploadsDir := "./uploads"
err := os.MkdirAll(uploadsDir, 0755)
if err != nil {
return ImageResult{Code: 1, Message: "failed", Data: fmt.Sprintf("创建目录失败: %v", err)}
}
ext := filepath.Ext(filename)
newFilename := fmt.Sprintf("%d%s", time.Now().UnixMilli(), ext)
filePath := filepath.Join(uploadsDir, newFilename)
err = os.WriteFile(filePath, data, 0644)
if err != nil {
return ImageResult{Code: 1, Message: "failed", Data: fmt.Sprintf("保存文件失败: %v", err)}
}
return ImageResult{Code: 0, Message: "success", Data: newFilename}
}
func (a *App) GetImage(filename string) ImageResult {
filePath := filepath.Join("./uploads", filename)
fmt.Println("filePath", filePath)
data, err := os.ReadFile(filePath)
if err != nil {
return ImageResult{Code: 1, Message: "failed", Data: fmt.Sprintf("打开文件路径失败: %v", err)}
}
ext := filepath.Ext(filename)
mimeType := "image/jpeg"
if ext == ".png" {
mimeType = "image/png"
}
// app.go - GetImage
return ImageResult{Code: 0, Message: "success", Data: fmt.Sprintf("data:image/%s;base64,%s", mimeType, base64.StdEncoding.EncodeToString(data))}
// return ImageResult{Code: 1, Message: "failed", Data: data}
}