我有以下使用 jQuery Ajax 将图像上传到服务器的功能:
function(file,f){
data = new FormData();
var ids = file[f].name._unique();
data.append('file',file[f]);
data.append('index',ids);
$(".dfiles[rel='"+ids+"']").find(".progress").show();
$.ajax({
type:"POST",
url:this.config.uploadUrl,
data:data,
cache: false,
contentType: false,
processData: false,
success:function(rponse){
//Success stuff here
});
});
}
在data.append('file', file[f]);
我们将内容附加到data
. 我希望能够data
从不同的功能中清除所有内容。这可能吗?我可以定义data
为window.data
使其全球化,但我会从那里做什么?