瀏覽代碼

check err

pull/30707/head
silverwind 3 週之前
父節點
當前提交
484691be05
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 3 行新增1 行删除
  1. 3
    1
      services/context/base.go

+ 3
- 1
services/context/base.go 查看文件

@@ -141,7 +141,9 @@ func (b *Base) JSON(status int, content any) {
func (b *Base) HTMLString(status int, html string) {
b.Resp.Header().Set("Content-Type", "text/html;charset=utf-8")
b.Resp.WriteHeader(status)
b.Resp.Write([]byte(html))
if _, err := b.Resp.Write([]byte(html)); err != nil {
log.Error("Render HTMLString failed: %v", err)
}
}

// RemoteAddr returns the client machine ip address

Loading…
取消
儲存