摘要: 原文地址:http://stackoverflow.com/questions/7335780/how-to-post-a-django-form-with-ajax-jqueryhtml:view: if request.is_ajax() and request.method == "POST": form = TestForm(request.POST, instance=test) if form.is_valid(): form.save() results[ 'status' ] =True ... 阅读全文
posted @ 2013-12-09 15:54 blue_whale 阅读(318) 评论(0) 推荐(0) 编辑