我正在使用 ajax 来执行该函数并检查该值是否已存在于数据库中。如果数据已经存在,我会显示工作正常的 jQuery 对话框,但如果该值不存在,我不想显示弹出窗口并刷新整个页面。这是我的 AJAX 函数:
function copyFile(val) {
var choices = document.getElementsByName("choice_shard_with_me").value;
var file_owner = document.getElementById('username').value;
$.ajax({
type: "GET",
url: "/copy_file/",
data: {choices:choices, file_owner:file_owner},
success: function(data){
$('#dialog-confirm').html(data)
}
});
}
我的 Django 视图:
if request.GET:
choices = request.GET.getlist('choice_shard_with_me')
file_owner = request.GET.getlist('username')
#Test if the file already exist in the user share directory
x = [File.objects.filter(user_id=request.user.id, file_name=i, flag='A').values_list('file_name') for i in choices]
y = [y[0] for y in x[0]]
if len(y) > 1:
return render_to_response('copyexist.html', {'file':y}, context_instance=RequestContext(request))
//doesn't refresh the whole page show the popup.
else:
//refresh whole page and do something
我的问题是:显示弹出窗口时,它会在 div 中使用 Ajax 显示。如果它进入复制完成的 else 语句文件,并且成功的消息在一个小 div 本身中给出(我想在这里刷新整个页面)。