delete请求
(api string)
| 487 | |
| 488 | //delete请求 |
| 489 | func (this *ElasticSearchClient) delete(api string) (req *httplib.BeegoHTTPRequest) { |
| 490 | return httplib.Delete(api).Header("Content-Type", "application/json").SetTimeout(this.Timeout, this.Timeout) |
| 491 | } |
| 492 | |
| 493 | //get请求 |
| 494 | func (this *ElasticSearchClient) get(api string) (req *httplib.BeegoHTTPRequest) { |