这是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!') } })
添加回答
举报
0/150
提交
取消