我正在使用以下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