delete请求
(api string)
| 615 | |
| 616 | //delete请求 |
| 617 | func (this *ElasticSearchClient) delete(api string) (req *httplib.BeegoHTTPRequest) { |
| 618 | return httplib.Delete(api).Header("Content-Type", "application/json").SetTimeout(this.Timeout, this.Timeout) |
| 619 | } |
| 620 | |
| 621 | //get请求 |
| 622 | func (this *ElasticSearchClient) get(api string) (req *httplib.BeegoHTTPRequest) { |