我是使用jQuery的新手所以很可能是我错过了一些简单的东西,但是我一直无法弄清楚我的代码究竟出了什么问题。在第21行,它以error:
函数开头,我收到了意外的令牌错误。
$(document).ready(function() {
$('#add-user').on('submit', function(e) {
e.preventionDefault();
var name = $('#name').val();
var email = $('#email').val();
var password = $('#password').val();
$ajax({
url: "https://api.mongolab.com/api/1/databases/master/collections/users?apiKey=ILEFx3JOAmBpS09IGMajQuSvmRTH_HIY",
data: JSON.stringify({
"name": name,
"email": email,
"password": password
}),
type: "POST",
contentType: "application/json",
success: function(data){
window.location.href="index.html"
}
error: function(xhr, status, err){
console.log(err);
}
});
});
});