edieruby
edieruby
WithWriteTimeout and WithReadTimeout, the unit is millisecond?
AReq { B []string `form:"b,optional"` } It seems that this multi parameters does not support? Can support? Similar like follow: https://stackoverflow.com/questions/39736243/ho-to-bind-to-slice-values-in-go-gin-form https://github.com/gin-gonic/gin/issues/408
go mod download get the error require github.com/go-session/session: version "v3.1.3" invalid: module contains a go.mod file, so major version must be compatible: should be v0 or v1, not v3.
@kevwan 参数校验规则 https://go-zero.dev/docs/tutorials/api/parameter `json:"gender,options=[foo,bar]"` https://go-zero.dev/en/docs/tutorials/api/parameter `json:"gender,options=foo|bar"` 不一致
github.com/zeromicro/go-zero v1.6.6 syntax = "v1" info ( title: "type title here" desc: "type desc here" author: "type author here" email: "type email here" version: "type version here" ) type request...
Find a number from 0 - 65535 which one is not in DB in the HTTP request. ```go type Group struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"` UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`...
current in serial.go: const ( // NoParity disable parity control (default). NoParity Parity = iota // OddParity enable odd-parity check. OddParity // EvenParity enable even-parity check. EvenParity // MarkParity enable...
go-zero v1.9.3 api.api syntax = "v1" type Request { Name string `form:"name"` } type Response { Message string `json:"message"` } service api-api { @handler ApiHandler get /from (Request) returns (Response)...