我想进行一个有2个参数值的ajax调用。一个文件对象和另一个字符串值。我需要传递2个参数,因为服务将接受2个参数。我写得像这样
$.ajax({
url: serviceParameter.url,
dataType: "JSON",
type: 'POST',
data: {fileInput: fileobject, uploadType: 'test'},
//enctype: 'multipart/form-data',
//processData: false, // Don't process the files
//contentType: false,
contentType: 'multipart/form-data',
cache: false,
success: function(response){
console.log(data);
},
error: function(e){console.log(e);}
})
它给404找不到异常。请帮帮我一些想法。