简体   繁体   中英

Submit form and retrieve result using Dojo

Could anyone provide a simple example how to ajaxify a form with dojo and retrieve a result from a php script?

like

<form action="login.php" method="post">
  <input type="text" name="user">
  <input type="password" name="password">
  <input type="button" value="login">
</form>

+

<?PHP
if($_POST["user"] == "test" && $_POST["password"] == "test") {
  echo "youre logged in successfully [REDIRECT HERE]";
}
else {
  echo "you failed epic";
}
?>

+

dojo.xhrpost or what?!

xhrPOST - for example

// Local var representing if the form has been sent at all
var hasBeenSent = false;
// Local var representing node to be updated
var messageNode = dojo.byId("messageNode");
// Using dojo.xhrPost, as the amount of data sent could be large
dojo.xhrPost({
    // The URL of the request
    url: "submission.php",
    // No content property -- just send the entire form
    form: dojo.byId("contactForm"),
    // The success handler
    load: function(response) {
        messageNode.innerHTML = "Thank you for contacting us!";
    },
    // The error handler
    error: function() {
        messageNode.innerHTML = "Your message could not be sent, please try again."
    },
    // The complete handler
    handle: function() {
        hasBeenSent = true;
    }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM