uniugm/admin/lib/web/readme.txt
2025-04-18 17:17:23 +08:00

12 lines
299 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

注意get、post注册的request结构字段如果是uri参数方式类型只支持golang基础类型以及基础类型的切片不能是结构体类型
例如:
type Field struct {
A int
B bool
}
type Request struct {
F1 *Field
}
F1字段就是非法的无法解析会报错