0

有人能告诉我为什么我用第一个代码而不是第二个代码得到 JSON 的结果吗?

第一的:

       jQuery.ajax({
                url: ajax_object.ajax_url,
                data:{
                    action : 'a2m_add_vote',
                    post_id: jQuery('input[name="a2m_post_id"]').val(),
                    answer_option: answer_number
                   },
                dataType: 'JSON',
                success:function(data){
                alert(data);
                },
              error: function(errorThrown){
                   alert('error');
                   console.log(errorThrown);
              }
         });

第二:

       jQuery.get(
            ajax_object.ajax_url,
            {
                action : 'a2m_add_vote',
                post_id: jQuery('input[name="a2m_post_id"]').val(),
                answer_option: answer_number
            },function(data) {
                alert(data);
                },'JSON');
4

0 回答 0