我正在寫一個函數將數據從表單發佈到休息api。這是我的,但它不工作,我不知道爲什麼。使用jquery POST休息api
<script>
console.log(document);
var form = document.getElementById("myform");
form.onsubmit = function (e) {
// stop the regular form submission
e.preventDefault();
// collect the form data while iterating over the inputs
var data = {};
for (var i = 0, ii = form.length; i < ii; ++i) {
var input = form[i];
if (input.name) {
data[input.name] = input.value;
}
}
function addData(){
$.ajax({
type: "POST",
url: "http://example.com",
data: JSON.stringify(data),
contentType: "application/json; charset=utf-8",
crossDomain: true,
dataType: "json",
success: function (data, status, jqXHR) {
alert(success);
},
error: function (jqXHR, status) {
// error handler
console.log(jqXHR);
alert('fail' + status.code);
}
});
}
</script>
任何人都可以指向正確的方向嗎?
什麼是你正在得到的錯誤 – naveen
我沒有得到一個錯誤。當我在瀏覽器中運行頁面時,點擊檢查元素並查看「網絡」下發生了什麼,然後單擊我應該運行的「添加」按鈕,但沒有任何反應! – bookthief