我想创建ajax调用并发送数据与文件和其他变量,我也使用django,如果它的帮助。如何发送ajax请求文件与其他字符串的变量?
我尝试:
js文件:
$("#save-new-request-testBtn").click(function(){
var project = $('#project').val();
var newRequestStreams = $('#newRequestStreams').val();
var request_bot_file = $('#request_bot_file')[0].files;
submit_new_request(project,newRequestStreams,request_bot_file);
});
function submit_new_request(project,newRequestStreams,request_bot_file){
url= "add/submit";
console.log(project);
var new_data;
csfr();
$.ajax({
async:false,
url: url,
type: "POST",
enctype: 'multipart/form-data',
data: ({project:project,newRequestStreams:newRequestStreams,request_bot_file :request_bot_file }),
success: function(data){
new_data= data;
console.log(data);
},
error: function(xhr, status, error) {
$("#formError").html(xhr.responseText);
console.log(xhr.responseText);
}
});
console.log('fgcfg');
return new_data;
}
问题是与选择的文件: 未捕获InvalidStateError:无法读取“HTMLInputElement”的“selectionDirection”属性:输入元素的类型(“文件”)不支持选择。
任何好的建议如何使它工作?
感谢, CFIR
2014-11-02
cfircoo
+0
你的问题是什么? –
2014-11-02 09:02:57
+0
这是正确的方法吗?因为它不工作? –
2014-11-02 09:06:25
+0
哪部分工作不正确? –
2014-11-02 09:07:35