Simple, first create a span
or div
under your textarea
with some id
.
<span id="msg"> </span>
Within the function success
you can use the function text()
selecting the span:
success: function(){
$("#msg").text("a mensagem que você quer");
}
A small example for ajax and php requests.
JS
$("#cadastrar-produtos").on("submit", function(e){
e.preventDefault();
var dados = $(this).serialize();
var url = "cadastrar-produto.php";
$.ajax({
url: url,
type: "POST",
data: dados,
dataType: "json",
success: function(json){
if (json.status) {
console.log("success");
$("#cadastrar").each(function() {
this.reset();
});
iziToast.success({
title: 'Ok',
message: json.message,
icon: "zmdi zmdi-thumb-up"
});
} else {
console.log("error");
iziToast.error({
title: 'Erro',
message: json.message,
icon: "zmdi zmdi-thumb-down"
});
}
},
error: function(json){
iziToast.error({
title: 'Erro',
message: "Erro ao fazer requisição",
icon: "zmdi zmdi-thumb-down"
});
}
});
});
I am using a lib called iziToast to display output alerts.
Php
require_once 'class/Produto.php';
require_once 'class/ProdutoDAO.php';
require_once 'conecta.php';
$nome = $_POST["nome"];
$preco = $_POST["preco"];
$quantidade = $_POST["quantidade"];
$validade = $_POST["validade"];
$descricao = $_POST["descricao"];
$produto = new Produto();
$dao = new ProdutoDAO($conexao);
$produto->setNome($nome);
$produto->setPreco($preco);
$produto->setQuantidade($quantidade);
$produto->setValidade($validade);
$produto->setDescricao($descricao);
try {
if ($dao->inserir($produto)) {
$json = array(
"status" => "true",
"message" => "Produto inserido com sucesso"
);
} else {
$json = array(
"status" => "false",
"message" => "Erro ao inserir produto"
);
}
} catch (PDOException $e) {
$json = array(
"status" => "false",
"message" => "Erro ao inserir produto: " . $e->getMessage()
);
}
echo json_encode($json);
I found it very interesting to create an array, as if it were a json object, to save the status and a message. The status will save if everything happened correctly in my back end, and a message like " Successfully registered product ". In my Function Success I make a if(json.status)
if true, it’s because it all worked out, and I send a custom iziToast for success messages, otherwise I send a custom iziToast for error messages.
Who gave the -1, could explain, please, the reason here in the comment at least?
– Leonardo Pessoa