当我尝试使用JQuery发布时,我收到此错误:
jquery.min.js:4 POST http://localhost:8000/post,json 501 (Unsupported method ('POST'))
这是我的代码:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"</script>
</head>
<body>
<script>
$.ajax({
type: "post",
dataType: "json",
url: "./post,json",
success: function(data) {
alert(data.msg);
}, data: {
name: "chris",
grade: 11
}
});
</script>
</body>
</html>
我做错了什么?
答案 0 :(得分:2)
你的网址可能有问题吗? "./post,json"
它看起来很奇怪。你也不能在网址中使用昏迷,或者你必须引用它。
您也可以尝试更改数据
data: JSON.stringify({
name: "chris",
grade: 11
})