Angular: Remove method sending undefined when trying to delete selected client

I am developing an Angular application where I manage a list of clients. The issue occurs when trying to remove a client from the list: the value of this.cliente.codigo is being sent as undefined in the removal request, even though the client is correctly selected.

This is my PrincipalComponent:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import { Component } from '@angular/core';
import { ClienteService } from '../servico/cliente.service';
import { Cliente } from '../modelo/Cliente';
@Component({
selector: 'app-principal',
templateUrl: './principal.component.html',
styleUrls: ['./principal.component.css'],
})
export class PrincipalComponent {
cliente = new Cliente();
btnCadastro: boolean = true;
tabela: boolean = true;
clientes: Cliente[] = [];
constructor(private servico: ClienteService) {}
selecionar(): void {
this.servico.selecionar().subscribe((retorno) => (this.clientes = retorno));
}
cadastrar(): void {
this.servico.cadastra(this.cliente).subscribe((retorno) => {
this.clientes.push(retorno);
this.cliente = new Cliente();
alert('Cliente cadastrado com sucesso!');
});
}
selecionarCliente(pos: number): void {
this.cliente = this.clientes[pos];
console.log('Cliente selecionado:', this.cliente);
this.btnCadastro = false;
this.tabela = false;
}
editar(): void {
this.servico.editar(this.cliente).subscribe((retorno) => {
let posicao = this.clientes.findIndex((c) => c.codigo == retorno.codigo);
this.clientes[posicao] = retorno;
this.cliente = new Cliente();
this.btnCadastro = true;
this.tabela = true;
alert('Cliente editado com sucesso!');
});
}
remover(): void {
console.log('Código do cliente a ser removido:', this.cliente.codigo);
if (this.cliente.codigo !== undefined) {
this.servico.remover(this.cliente.codigo).subscribe(() => {
const posicao = this.clientes.findIndex(c => c.codigo === this.cliente.codigo);
this.clientes.splice(posicao, 1);
this.cliente = new Cliente();
this.btnCadastro = true;
this.tabela = true;
alert('Cliente removido com sucesso!');
});
} else {
console.error('Erro: Código do cliente não está definido ao tentar remover.');
}
}
ngOnInit()
</code>
<code>import { Component } from '@angular/core'; import { ClienteService } from '../servico/cliente.service'; import { Cliente } from '../modelo/Cliente'; @Component({ selector: 'app-principal', templateUrl: './principal.component.html', styleUrls: ['./principal.component.css'], }) export class PrincipalComponent { cliente = new Cliente(); btnCadastro: boolean = true; tabela: boolean = true; clientes: Cliente[] = []; constructor(private servico: ClienteService) {} selecionar(): void { this.servico.selecionar().subscribe((retorno) => (this.clientes = retorno)); } cadastrar(): void { this.servico.cadastra(this.cliente).subscribe((retorno) => { this.clientes.push(retorno); this.cliente = new Cliente(); alert('Cliente cadastrado com sucesso!'); }); } selecionarCliente(pos: number): void { this.cliente = this.clientes[pos]; console.log('Cliente selecionado:', this.cliente); this.btnCadastro = false; this.tabela = false; } editar(): void { this.servico.editar(this.cliente).subscribe((retorno) => { let posicao = this.clientes.findIndex((c) => c.codigo == retorno.codigo); this.clientes[posicao] = retorno; this.cliente = new Cliente(); this.btnCadastro = true; this.tabela = true; alert('Cliente editado com sucesso!'); }); } remover(): void { console.log('Código do cliente a ser removido:', this.cliente.codigo); if (this.cliente.codigo !== undefined) { this.servico.remover(this.cliente.codigo).subscribe(() => { const posicao = this.clientes.findIndex(c => c.codigo === this.cliente.codigo); this.clientes.splice(posicao, 1); this.cliente = new Cliente(); this.btnCadastro = true; this.tabela = true; alert('Cliente removido com sucesso!'); }); } else { console.error('Erro: Código do cliente não está definido ao tentar remover.'); } } ngOnInit() </code>
import { Component } from '@angular/core';
import { ClienteService } from '../servico/cliente.service';
import { Cliente } from '../modelo/Cliente';

@Component({
  selector: 'app-principal',
  templateUrl: './principal.component.html',
  styleUrls: ['./principal.component.css'],
})
export class PrincipalComponent {
  cliente = new Cliente();
  btnCadastro: boolean = true;
  tabela: boolean = true;
  clientes: Cliente[] = [];

  constructor(private servico: ClienteService) {}

  selecionar(): void {
    this.servico.selecionar().subscribe((retorno) => (this.clientes = retorno));
  }

  cadastrar(): void {
    this.servico.cadastra(this.cliente).subscribe((retorno) => {
      this.clientes.push(retorno);
      this.cliente = new Cliente();
      alert('Cliente cadastrado com sucesso!');
    });
  }

  selecionarCliente(pos: number): void {
    this.cliente = this.clientes[pos];
    console.log('Cliente selecionado:', this.cliente);
    this.btnCadastro = false;
    this.tabela = false;
  }

  editar(): void {
    this.servico.editar(this.cliente).subscribe((retorno) => {
      let posicao = this.clientes.findIndex((c) => c.codigo == retorno.codigo);
      this.clientes[posicao] = retorno;
      this.cliente = new Cliente();
      this.btnCadastro = true;
      this.tabela = true;
      alert('Cliente editado com sucesso!');
    });
  }

  remover(): void {
    console.log('Código do cliente a ser removido:', this.cliente.codigo);
    if (this.cliente.codigo !== undefined) {
      this.servico.remover(this.cliente.codigo).subscribe(() => {
        const posicao = this.clientes.findIndex(c => c.codigo === this.cliente.codigo);
        this.clientes.splice(posicao, 1);
        this.cliente = new Cliente();
        this.btnCadastro = true;
        this.tabela = true;
        alert('Cliente removido com sucesso!');
      });
    } else {
      console.error('Erro: Código do cliente não está definido ao tentar remover.');
    }
  }

  ngOnInit()

When a client is selected, the selecionarCliente method is called, and the client is correctly displayed in the console, as shown in the image. However, when trying to remove the client, this.cliente.codigo is undefined.

I’ve tried looking in various places on the internet and in ChatGPT itself, but nothing worked…
Any help would be greatly appreciated!

My english is from chatGPT so…

New contributor

Bernardo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật