这是ajax代码:
$.ajax({
url: '/api/v1/register',
data: JSON.stringify({username: $username, email: $email, password: $password}),
contentType: 'application/json',
type: 'POST',
dataType: 'json',
success: function (msg) {
console.log(msg)
console.log('hello!')
},
error: function (error_msg) {
console.log(error_msg)
console.log('wrong!')
}
})
大话西游666
相关分类