所以我使用 Ajax 将表单发布到服务器,但是,它不是将表单发送到 URL,而是发送到自身。
这是代码
$("#psignup").click(function() {
$.ajax({
type: "POST",
url: "example/default/mobile_user_register",
data: $("#patientsignup").serialize(), // serializes the form's elements.
success: function(data)
{
alert(data); // show response from the php script.
}
});
return false; // avoid to execute the actual submit of the form.
});
在浏览器中,它似乎将 from 发送到http://localhost:8080/?email=asdfa%40asd.com&password=asd&repeatpassword=&firstname=asd&username=&lastname=asd
我正在寻找的当然是“ http://example.com/default/mobile_user_register?xxxxxxxxxxxxxxx ”。你能帮我理解为什么这不起作用吗?