Is it something evil to use a POST route instead of GET to retrieve data?
One of my route has 14 variables. It's really complicated to use a road without a body. So I wonder if it's a use case to use a POST route in this case.
If not, is there another method?
Exemple GET :
this._http.get(`myURL?type=${type}&offset=${offset}&limit=${limit}&var1=${var1}&var2=${var2}&var3=${var3}&var5=${var5}&var6=${var6}&var7=${var7}&var8=${var8}&var9=${var9} ....
Transform to POST :
const data = {
var1: var1,
var2, var2
var3: var3,
...
}
this._http.post(myURL, data, { headers: headers })
Thanks !