这是我的代码:
var fd = new FormData(document.querySelector('#form-step1'));
var xhr = new XMLHttpRequest();
xhr.open('POST', '/Handlers/newAccount_handler.php', true);
xhr.send(fd); // this line is causing a 500 Internal Server Error and the data is not saved to the MySQL table
为什么最后一行会导致 500 Internal Server Error?代码有什么问题还是我需要先记录任何内容才能看到?