I am trying to check if a textarea
has valid text. Checking the space was easy, but enter
do not know how to verify.
enviar() {
var num = 13; // 13 é o cód ascii do enter
if (this.textoEmEdicao == '' || this.textoEmEdicao === " ") { // verifico se o texto é nulo ou tem espaço
this.textoEmEdicao = '';// setar a textbox para nenhum texto
} else {
let mensagem = {
texto: this.textoEmEdicao,
data: new Date(),
contato: this.emissor
}
this.adicionarMensagem(mensagem);
this.textoEmEdicao = '';
}
}