Re: [go-nuts] front-end post a body, back-end use gin.Context BindJSON but fail

2018-11-21 Thread ge . sf . chn
thanks,you are right, i got it at that night. 在 2018年11月9日星期五 UTC+8下午10:14:14,Burak Serdar写道: > > On Fri, Nov 9, 2018 at 6:35 AM > wrote: > > > > front-end info > > //body struct > > type Bucket struct { > >Name string `json:"name"` > >KeyId string `json:"key_id"` > >

Re: [go-nuts] front-end post a body, back-end use gin.Context BindJSON but fail

2018-11-09 Thread Burak Serdar
On Fri, Nov 9, 2018 at 6:35 AM wrote: > > front-end info > //body struct > type Bucket struct { >Name string `json:"name"` >KeyId string `json:"key_id"` >KeySecret string `json:"key_secret"` >Header*Header `json:"header"` >Property int `json:"property"` > }