0

我正在使用 jquery.load() 函数将表单加载到弹出 div 中,到目前为止它运行良好。我想补充的是,当表单提交错误时,它会将错误标记表单加载回弹出 div,而不是重定向到当前正在执行的实际表单页面。

有人建议我使用我认为可以完美工作的 jquery-form 。我只是不知道如何实现它。

这是 .load() 函数:

$(document).ready(function(){
        $(".create").on("click", function(){
            $("#popupContact").load("/cookbook/createrecipe #createform");
        });
});

这是加载表单的页面:

<div id="popupContact" class="popup">
        <a id="popupContactClose" style="cursor:pointer;float:right;">x</a>
        <p id="contactArea">
        </p>
</div>
<div id="backgroundPopup">
</div>  
<div id="col2-footer">
{% paginate %}
</div>

这是我的表单模板:

<div id="createform">
<h1>Create New Recipe</h1>
    <form id="createrecipe" action="{% url createrecipe %}" method="POST">
        <table>
            {% csrf_token %}
            {{ form.as_table }}
        </table>
        <p><input type="submit" value="Submit"></p>
    </form>
</div>

这是我使用 jquery-form 的尝试:

<script> 
    // wait for the DOM to be loaded 
    $(document).ready(function() { 
        var options ={
            target: '.popup',
    };
    $('#createrecipe').submit(function() {
        $(this).ajaxSubmit(options); 
        return false;
    }); 
});
</script> 

创建配方视图:

def createrecipe(request):
    if not request.user.is_authenticated():
        return HttpResponseRedirect('/index/')
    else:
        if request.method == 'POST':
            print 1
            form = RecipeForm(request.POST)
            if form.is_valid():
                print 2
                recipe = form.save(commit=False)
                recipe.original_cookbook = request.user.cookbooks.all()[0]
                recipe.pub_date = datetime.datetime.now()
                recipe.save()
                user = request.user
                cookbooks = user.cookbooks
                cookbook = cookbooks.all()[0]
                cookbook.recipes.add(recipe)
                return HttpResponseRedirect('/account')
        else:
            form = RecipeForm()

        return render_to_response('cookbook/createrecipe.html',
                                    {'form':form},
                              context_instance=RequestContext(request))

谢谢小吃鱼

4

2 回答 2

0

因为无论如何您都使用 jquery,所以您应该通过 ajax 提交表单,否则您将被重定向:

 $('#createform form').submit(function(e) {
 e.preventDefault();
 $.post("/your views url/", { 
            data: $('#createform form').serialize(),
            },function(data){ //this is the successfunction 
                              //data is what your view returns}
 });

您的视图应该以 json 格式返回错误,以便您可以在 javascript 中处理它们:

from django.utils import simplejson

def ajax_recipe(request):
    if request.method == 'POST':
        form = YourForm(request.POST)
        if form.is_valid():
            form.save()
            return HttpResponse("ok")
        else:
            errors = form.errors
            return HttpResponse(simplejson.dumps(errors))
    else:
        data = "error"
        return HttpResponse(data)

使用该标记,您可以使用 jquery post success 功能将表单错误放置在您想要的任何位置。

if(data == "ok"){do something}
// else error handling
var errors = jQuery.parseJSON(data)
if(errors.somefield){//place errors.somefield anywhere}

请注意,代码未经测试。但这就是我要走的路。

编辑

请注意,要完成这项工作,您必须将自定义 X-CSRFToken 标头设置为每个 XMLHttpRequest 上的 CSRF 令牌的值。换句话说,从模板中的 django 文档复制并粘贴脚本:https ://docs.djangoproject.com/en/dev/ref/contrib/csrf/#ajax

这就是你如何在你的 Form.py 中提出错误

def clean_somefield(self):
        somefield = self.cleaned_data.get('some field')
        if not somefield:
            raise forms.ValidationError(u'This field is required.')
于 2012-04-23T20:47:06.973 回答
0

我的 javascript 语法有错误,一切正常

于 2012-04-25T23:44:56.077 回答