4
I am building a system and at a certain stage it saves 3 sets of information filled in the form by the system operator:
- Set 1: student information;
- Set 2: student guarantor information;
- Set 3: Student Enrollment Information.
I am making the requests to the code that saves the information via AJAX
(using jQuery
), and on the server side the script PHP
does some checks and returns some messages.
For example, the system checks the existence of the student record and warns the operator, then checks and can alert that the guarantor’s CPF is invalid (if it passes the js validation).
What happens is that as are two series of messages he makes it:
Ajax answer giving error
In PHP code I’m doing so:
Warnings for set 1 of information
// encontrou Registros do Aluno
if($busca_aluno['sys'] === '002' && $aguardando_usuario === false){
$retorna['msg'] = 'Este Aluno foi reconhecido pelo sistema';
//verifica status da matrícula do aluno
if($busca_aluno['situacao_pessoa'] === 1){ //ativa, identifica rematrícula
$operacao_aluno = 'rematricula'; //updt
$retorna['msg'] .= '<p>A matricula do Aluno esta ativa e sera realizada a <strong>REMATRICULA</strong> dele. Aguarde...</p>';
}elseif($busca_aluno['situacao_pessoa'] === 0){ //inativa, identifica que o aluno passou um certo período sem se matricular
$operacao_aluno = 'matricula'; //insert
$retorna['msg'] .= '<p>A matricula do aluno estava inativa, ele sera matriculado normalmente.</p>';
}else{ // situação desconhecida
$operacao_aluno = 'matricula'; //insert
$retorna['msg'] .= "<p>O codigo retornado pelo sistema para a situacao do aluno, e um codigo invalido de acordo com as diretrizes.</p>";
$retorna['msg'] .= "<p><strong>Informe a matrícula do aluno ao suporte. O cadastro do aluno sera continuado como MATRICULA.</strong></p>";
}
// adiciona os dados de código do sistema ao array de mensagem
$retorna = array_merge($busca_aluno, $retorna);
echo json_encode($retorna); // aviso na tela
}
The warning structure of the other sets follow the same structure, the warnings appear one after the other.
Excellent! I hadn’t thought of that. My warning structure has shown this annoyance mainly because the processing is not time consuming, and the time that each message appears on the user screen is probably not enough. I think I’m going to erase the messages and show only the really necessary ones. Unless some more interesting user interaction architecture arises.
– Marcos Freitas