最近发布的主题
最近发布的文章
暂无
最近分享的资源
暂无
最近发布的项目
暂无
最近的评论
-
评论了主题 调用post接口type DoctorData struct { TableName string TalbeName2 string Data string `orm:"type(text)"` Data2 Doctors } res, err := goreq.Request{ Method: "POST", Uri: conf.USERSYNC, Accept: "application/json", ContentType: "application/json", Body: DoctorData{"User", "Doctor", contents, doc}, }.Do() 接口接收到的参数为 {"TableName"=>"User", "TalbeName2"=>"Doctor"......} 如何让传递的接收的参数为table_name table_name2 ......