first push
This commit is contained in:
		
							parent
							
								
									d437bfae2b
								
							
						
					
					
						commit
						8fe8d3f716
					
				|  | @ -69,15 +69,22 @@ func (r *Request) getData() io.Reader { | ||||||
| 			urlValues.Add(key, value) | 			urlValues.Add(key, value) | ||||||
| 		} | 		} | ||||||
| 		reqBody = urlValues.Encode() | 		reqBody = urlValues.Encode() | ||||||
|  | 		if _, ex := r.Headers["Content-Type"]; !ex { | ||||||
| 			r.Headers["Content-Type"] = "application/x-www-form-urlencoded" | 			r.Headers["Content-Type"] = "application/x-www-form-urlencoded" | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
| 	} else if r.Json != nil { | 	} else if r.Json != nil { | ||||||
| 		bytesData, _ := json.Marshal(r.Json) | 		bytesData, _ := json.Marshal(r.Json) | ||||||
| 		reqBody = string(bytesData) | 		reqBody = string(bytesData) | ||||||
|  | 		if _, ex := r.Headers["Content-Type"]; !ex { | ||||||
| 			r.Headers["Content-Type"] = "application/json" | 			r.Headers["Content-Type"] = "application/json" | ||||||
|  | 		} | ||||||
| 	} else if r.JsonByte != nil { | 	} else if r.JsonByte != nil { | ||||||
| 		reqBody = string(r.JsonByte) | 		reqBody = string(r.JsonByte) | ||||||
|  | 		if _, ex := r.Headers["Content-Type"]; !ex { | ||||||
| 			r.Headers["Content-Type"] = "application/json" | 			r.Headers["Content-Type"] = "application/json" | ||||||
| 		} | 		} | ||||||
|  | 	} | ||||||
| 	return strings.NewReader(reqBody) | 	return strings.NewReader(reqBody) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue