And the tips for jquery ajax call, is to define jquery with this two options (contentType, processData) set to false :
$.ajax({
url: $url,
type: 'POST',
data: formData,
processData: false,
contentType: false,
Ressources :