我正在尝试使用 jQuery Ajax 来使用休息服务。Ajax 请求类型是“POST”。当我尝试加载它时,请求将作为“OPTIONS”,我得到“501 Not Implemented”(如图所示)
<script>
var user ="user:pwd";
var auth = "Basic " + btoa(user);
$(function(){
$.ajax({
type: 'post',
url: 'https://xyz/api/core/v3/xyz',
dataType: 'json',
contentType: 'application/json',
data: '{"title":"test","content":"testpega" }',
success: function(resp) {
$('#log').html("success");
},
error: function(e) {
$('#log').html("error: "+e);
}
});
});
</script>
任何帮助/建议?
注意:我可以使用与 FireFox rest-client 插件相同的 web 服务。