中级会员
  • 第 1606 位会员
  • liker
  • 1218089628@qq.com
  • 2014-07-29 02:49:17
  • Offline
  • 0

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 评论了主题 调用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 ......