request

package
v1.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 23, 2019 License: MIT Imports: 11 Imported by: 1

Documentation

Overview

Package request 提供Tigo框架自带的http client功能,此包包含发送http请求的方法。

Index

Constants

View Source
const (
	GET     string = "GET"
	POST    string = "POST"
	PUT     string = "PUT"
	PATCH   string = "PATCH"
	HEAD    string = "HEAD"
	OPTIONS string = "OPTIONS"
	DELETE  string = "DELETE"
)

Variables

This section is empty.

Functions

func Map2Xml added in v1.0.8

func Map2Xml(inputMap map[string]interface{}, versionAndEncode ...string) (xml string)

Map2Xml map转xml

  • versionAndEncode 版本号和编码,[]string{version, encode}

Types

type HttpClient

type HttpClient struct {
	*http.Client
}

HttpClient 是自定义HTTPClient

type Response

type Response struct {
	*http.Response
	Content []byte
}

Response 自定义Http的Response

func Delete

func Delete(requestUrl string, headers ...map[string]string) (*Response, error)

Delete 向指定url发送delete请求

func Get

func Get(requestUrl string, headers ...map[string]string) (*Response, error)

Get 向指定url发送get请求

func Head(requestUrl string, headers ...map[string]string) (*Response, error)

Head 向指定url发送head请求

func MakeRequest added in v1.0.8

func MakeRequest(method string, requestUrl string, bodyReader io.Reader, headers ...map[string]string) (*Response, error)

MakeRequest 发送指定的Request请求

  • method 请求方式
  • requestUrl 请求地址
  • bodyReader 请求体
  • headers 报文头,缺省

func Options

func Options(requestUrl string, headers ...map[string]string) (*Response, error)

Options 向指定url发送options请求

func Patch

func Patch(requestUrl string, postParams map[string]interface{}, headers ...map[string]string) (*Response, error)

Patch 向指定url发送patch请求

func Post

func Post(requestUrl string, postParams map[string]interface{}, headers ...map[string]string) (*Response, error)

Post 向指定url发送post请求

func Put

func Put(requestUrl string, postParams map[string]interface{}, headers ...map[string]string) (*Response, error)

Put 向指定url发送put请求

func Request

func Request(method string, requestUrl string, postParams map[string]interface{}, headers ...map[string]string) (*Response, error)

Request 发送指定的Request请求

  • method 请求方式
  • requestUrl 请求地址
  • postParam 请求参数,k-v格式
  • headers 报文头,缺省

func (*Response) ToContentStr

func (response *Response) ToContentStr() string

ToContentStr 将Response实例的Content转换为字符串

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL