0

我正在使用 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 本身中给出(我想在这里刷新整个页面)。

4

1 回答 1

1

您可以对答案进行例如 json 编码,您将在其中返回两个参数:

 { 
   success: true/false,
   data : YOUR_DATA_HERE
 }

所以成功回调可以查看成功部分,并决定是显示弹出数据,还是重新加载页面

抱歉,我不知道 python,所以不能建议准确的表达式来进行正确的 json 编码。

于 2013-07-02T07:23:39.187 回答