使用DELETE方法的Ajax请求不会变形

时间:2015-07-13 12:08:40

标签: javascript jquery ajax

我正在使用以下Ajax请求来删除数据库中的注释。我的代码

jQuery.ajax({
            url: 'http://localhost/comment/deleteComment',
            type: 'DELETE',
            data: {commentId: Id,username: Username } ,
            contentType: 'text/plain',
            success: function(data){
                            alert("Success")
                         },
            error: function(){
                            alert("failed")
                         }
        }); 

但是在我的网络控制台中,我在控制台标题中收到以下消息

Remote Address:[::1]:8080
Request URL:http://localhost/comment/deleteComment
Request Method:OPTIONS
Status Code:403 Forbidden

0 个答案:

没有答案