0

你好现在花了几个小时,我不知道这里发生了什么。当我使用 jquery 1.8 发送 ajax 请求时,我总是收到以下错误:

“语法错误:标签无效”

这是我的代码...

        $(document).ready(function() {

    $("#create-workspace-button").click(function () {
        show_dialog($(this));
    })
    $("#submit-create-workspace").live("click", function(event){
        event.preventDefault();
        category= $("#id_workspace_category").val();
        workspace_name=$("#id_workspace_name").val()
        var json_data = JSON.stringify({
            "cat":category,
            "workspace_name":workspace_name

        })
        $.ajaxSetup({
            headers: {
                'X-CSRFToken': $("input[name=csrfmiddlewaretoken]").val()

            }
        })
        $.ajax({
            type:'POST',
            data:json_data,
            url: '/workspace/create/',
            success: function(data) {
                alert('hi')



            },
            error: function(jqXHR, textStatus, errorThrown)
            {
                //here a label error happens...i dont know why
                console.log(errorThrown)
            }
        })


    });




    $("#close").click(function () {
        close_dialog($(this));
    })



    function close_dialog(thiz){
        $(thiz).fadeOut(function(){
            $('#layer,.form-submit-dialogbox').fadeOut();
        })
    }
    function show_dialog(thiz){

        $('#layer,.form-submit-dialogbox, #close').fadeIn();
    }
})

编辑“JSON.stringify(”被错过了......但同样的错误

4

2 回答 2

1

您是在询问语法错误还是参考错误?您已经编辑了代码,但没有编辑标题...

您的引用错误可能是因为您引用的是全局console对象,在某些浏览器中,该对象仅在控制台打开时才存在。

您的语法错误可能是因为)代码末尾有额外的右括号,但如果没有看到更广泛的上下文,就很难分辨。

于 2012-09-10T13:26:38.317 回答
0

当 ajax 部分看起来像这样时,它可以工作......

    $.ajax({
            type : 'POST',
            url :  '/workspace/create/',
            async: false,
            dataType : 'json',
            cache:false,
            data: {
                cat:category,
                workspace_name:workspace_name
            },
            success : function(data){
            //alert(data[0].title);


            },
            error: function(){
                console.log('problems with data transfer');
            }


        }); 
于 2012-09-10T16:46:04.497 回答