- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将 Echo 框架用于接受表单数据的 post 端点。我使用 Struct 作为绑定(bind)模型来提取表单数据。我的绑定(bind)模型和上传处理程序代码如下所示。
type FormModel struct {
ID string `form:"ID"`
FirstName string `form:"FirstName"`
File *multipart.FileHeader `form:"myFileName"`
}
func (cs *handler) uploadForm(c echo.Context) error {
s := new(FormModel)
if err := c.Bind(s); err != nil {
return nil
}
fileHandler, err := c.FormFile("myFileName")
fileHandler, err := c.FormFile("myFileName")
获取文件。有没有办法在绑定(bind)模型中获取文件信息?
最佳答案
echo 默认不支持绑定(bind) multipart.Form.File 数据,需要重新绑定(bind)实现接口(interface)。
为 echo Bind 封装了一层额外的 bind FormFile。如果结构指针类型的属性类型为*multipart.FileHeader 或[]*multipart.FileHeader,则该属性将通过反射设置为FormFile 的值。
我大概实现了这个功能。我没有使用过echo,也没有测试过,但想法是正确的。
最后更新:添加示例并修复代码以构建。感谢@vicTROLLA 指出 typeMultipartFileHeader
类型定义错误。
package main
import (
"bytes"
"fmt"
"github.com/labstack/echo"
"io/ioutil"
"mime/multipart"
"net/http"
"reflect"
"strings"
"time"
)
var (
typeMultipartFileHeader = reflect.TypeOf((*multipart.FileHeader)(nil))
typeMultipartSliceFileHeader = reflect.TypeOf(([]*multipart.FileHeader)(nil))
)
type File struct {
File *multipart.FileHeader `form:"file"`
Files []*multipart.FileHeader `form:"files"`
}
func main() {
app := echo.New()
// warp bind suppet bind FormFile
app.Binder = NewBindFile(app.Binder)
app.Any("/file", func(ctx echo.Context) error {
var file File
err := ctx.Bind(&file)
if err != nil {
return err
}
readfile := func(file *multipart.FileHeader) {
f, err := file.Open()
if err != nil {
fmt.Printf("open %s error: %s\n", file.Filename, err.Error())
return
}
body, err := ioutil.ReadAll(f)
fmt.Printf("read file %s error: %v body: %s\n", file.Filename, err, body)
}
readfile(file.File)
for _, file := range file.Files {
readfile(file)
}
return err
})
go func() {
time.Sleep(200 * time.Millisecond)
buf := bytes.NewBuffer(nil)
w := multipart.NewWriter(buf)
part, _ := w.CreateFormFile("file", "file")
part.Write([]byte("this one file"))
part, _ = w.CreateFormFile("files", "files")
part.Write([]byte("fils part 1"))
part, _ = w.CreateFormFile("files", "files")
part.Write([]byte("fils part 2"))
part, _ = w.CreateFormFile("files", "files")
part.Write([]byte("fils part 3"))
part, _ = w.CreateFormFile("files", "files")
part.Write([]byte("fils part 4"))
w.Close()
http.Post("http://localhost:1323/file", w.FormDataContentType(), buf)
}()
app.Start(":1323")
}
type BindFunc func(interface{}, echo.Context) error
func (fn BindFunc) Bind(i interface{}, ctx echo.Context) error {
return fn(i, ctx)
}
func NewBindFile(b echo.Binder) echo.Binder {
return BindFunc(func(i interface{}, ctx echo.Context) error {
err := b.Bind(i, ctx)
if err == nil {
ctype := ctx.Request().Header.Get(echo.HeaderContentType)
// if bind form
if strings.HasPrefix(ctype, echo.MIMEApplicationForm) || strings.HasPrefix(ctype, echo.MIMEMultipartForm) {
// get form files
var form *multipart.Form
form, err = ctx.MultipartForm()
if err == nil {
err = EchoBindFile(i, ctx, form.File)
}
}
}
return err
})
}
func EchoBindFile(i interface{}, ctx echo.Context, files map[string][]*multipart.FileHeader) error {
iValue := reflect.Indirect(reflect.ValueOf(i))
// check bind type is struct pointer
if iValue.Kind() != reflect.Struct {
return fmt.Errorf("BindFile input not is struct pointer, indirect type is %s", iValue.Type().String())
}
iType := iValue.Type()
for i := 0; i < iType.NumField(); i++ {
fType := iType.Field(i)
// check canset field
fValue := iValue.Field(i)
if !fValue.CanSet() {
continue
}
// revc type must *multipart.FileHeader or []*multipart.FileHeader
switch fType.Type {
case typeMultipartFileHeader:
file := getFiles(files, fType.Name, fType.Tag.Get("form"))
if len(file) > 0 {
fValue.Set(reflect.ValueOf(file[0]))
}
case typeMultipartSliceFileHeader:
file := getFiles(files, fType.Name, fType.Tag.Get("form"))
if len(file) > 0 {
fValue.Set(reflect.ValueOf(file))
}
}
}
return nil
}
func getFiles(files map[string][]*multipart.FileHeader, names ...string) []*multipart.FileHeader {
for _, name := range names {
file, ok := files[name]
if ok {
return file
}
}
return nil
}
关于go - Echo web 框架绑定(bind) FormFile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61916842/
我有一个 HTML 文件,当您单击按钮时,Ajax 会加载一个 PHP 文件,然后 PHP 文件将一些文本回显到 HTML 文件。 问题是,如果我第二次(或第三次、第四次等)单击该按钮,下一个 ech
我正在尝试使用以下方法调用数据库中的 HTML/PHP 内容: 当调用该行时,HTML 会正确显示,但 PHP 不会。我相信这是主 echo 内部 echo 的原因。 Hello \
我正在尝试使用复选框来显示和更新 MySQL 数据库中的记录。我想根据复选框是选中还是未选中来更改复选框的值。但是我收到了这个错误: 解析错误:语法错误,意外的 T_ENCAPSED_AND_WHIT
我遇到了重定向符号的不同位置( > , &2 message message echo message >&2 message >&2 echo message message 对于所有表单,我得到了
这个问题在这里已经有了答案: Source files in a bash script (2 个回答) 2年前关闭。 https://askubuntu.com/questions/250012/h
我注意到当我在 DOS 中使用 echo 将某些内容打印到文件时,会在字符串后附加一个空格。我需要打印没有尾随空格的字符串。有没有办法做到这一点,或者作为一种解决方法,从文件中删除尾随空格? 最佳答案
不确定我在这里做错了什么,但结果总是空的。只有当没有选择答案时,脚本才应该输出“你没有选择答案”,否则它应该输出给定的答案: 我已经按照提到的更新了脚本,但即使给出了答案,仍然得到空输出:/ 感谢到目
不确定我在这里做错了什么,但结果总是空的。只有当没有选择答案时,脚本才应该输出“你没有选择答案”,否则它应该输出给定的答案: 我已经按照提到的更新了脚本,但即使给出了答案,仍然得到空输出:/ 感谢到目
echo 'Welcome echo $_SESSION["username"];'; 在上面的代码中,它没有显示用户名变量。相反,它只是简单地回显 Welcome $_SESSION["userna
我试图在 php echo 语句中回显一个 php 变量。 我在 MySql 数据库中有一个名为 display_code 的列,其中包含一个值,例如 $num_rows_customers。 我从数
如上所述,我想知道为什么我们使用@Echo off/on 而不是Echo off/on。这是有什么原因还是只是为了可见性?根据这个,它在视觉上似乎没有什么不同: C:\Users\Jack> Echo
我希望能够将新的 ECHO 消息连接到先前的 ECHO 消息,如下所示: 命令: ECHO PROCESSING... REM some process here ECHO DONE 结果: PROC
我不了解 jQuery,所以如果这是一个愚蠢的问题,我很抱歉。 当我将值从 php 传递到 javascript 时,即使之前用 echo 打印的消息也被传递,我怎样才能避免这种情况? php $
请有人解释一下下面的结果差异 echo intval(1e10); 输出1410065408 echo 1e10; 输出10000000000 最佳答案 有符号整数有最大值。在 32 位系统上,它
我正在制作导航菜单,我想添加一个事件类这是我的代码 我想输出 CSTYLE 并使用 'if 来回显事件类 %s %s ', $row['CSTYLE'], $row['id'], $row['na
echo -n 的终端手册页如下: -n Do not print the trailing newline character. This may also be achie
直到今天它突然停止工作时,它一直工作得很好......(我知道这不是很有帮助,但我到处都看了看) 我正在遍历从 mySQL 查询返回的值,并将每个值放入一个数组中,然后将这个数组放入另一个数组中。然后
目前我正在这样做: $lines = file('data/index'); foreach ($lines as $value) list($title, $location) =
我在 PHP CLI 中运行以下脚本: 什么都没有显示。如何启用输出? 最佳答案 在您的终端中运行它: php -r 'echo "Hello World!\n";' 关于echo - 在 PHP
希望这是一个简单的问题... 我正在使用批处理文件来移动一些文件,不幸的是,出于各种原因,这有点复杂。要正常运行,需要右键单击并“以管理员身份运行”。 为了提醒未清洗的大众和我执行该步骤,我希望第一行
我是一名优秀的程序员,十分优秀!