Ajax - 发送数据:提示被用户

时间:2015-05-14 10:06:50

标签: javascript jquery ajax django post

我使用Django和Ajax。我有一个表单,这个表单的一部分由javascript-ajax管理。 当我想在POST中将信息传递给Django时,我有这个错误:

NS_ERROR_NOT_AVAILABLE:提示已被用户中止

我的代码HTML: (此页面的网址为:http://localhost:8000/myfic

...
<form method="POST" id="formMod" action="{% url 'myfic' %}">
...
<input type="submit" id="the_button" class="btn btn-success"  value="Validate" >

我的代码JS:

function send_post(){
    alert("Welcome");
    $.ajax({
        url : "http://localhost:8000/myfic/",
        type : "POST",
        data : { 'the_post' : "CACAO" },
        success : function(data){
            alert("succees");
        },
        error : function(data) {
                alert("error");
            }
    });
    return false;
}

$(document).ready(function() {
        $("#the_button").click(function(){
        alert("form click !");
        send_post();
    });
});

显示的提醒是:“表单点击!”,“欢迎”,“错误”。

感谢您的帮助!

0 个答案:

没有答案