Documentation ¶
Index ¶
Constants ¶
View Source
const ( CONTENT_TYPE_FORM = "x-form" CONTENT_TYPE_JSON = "json" CONTENT_TYPE_RESTFUL = "restful" CONTENT_TYPE_FILE = "file" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Options ¶ added in v1.19.0
type Options struct { Method string `json:"method"` //接口方法 GET|POST|PUT|DELETE Protocol string `json:"protocol"` //协议 x-form|json|restful Group string `json:"group"` //应用分组,用于nacos中分组,不传为当前nacos分组及默认分组 Header any `json:"header"` //额外的头部参数 Query any `json:"query"` //URL Query参数 Data any `json:"data"` //x-form Postform参数 Json any `json:"json"` //json或restful模式的body参数 Path map[string]string `json:"path"` //restful模式的路径参数 Files []grequests.FileUpload //文件上传数据 Retry bool `json:"retry"` //是否重试 }
Click to show internal directories.
Click to hide internal directories.