Posts by Raphael Pinheiro • 16 points
4 posts
-
0
votes0
answers251
viewsQ: Nodejs, Express + Swagger
Hello, folks I was tasked with a mission to implement Swagger in an express application, with the purpose of generating Swagger.json for the AWS apigateway deploy. I have tried using swaggerJSDoc,…
-
0
votes2
answers36
viewsA: Receive a status and mark as CHECKED - Typescript
this.arrayDeTodosOsUsuarios.forEach(userGeral => { this.arrayUsuariosGrupo.forEach(userGrupo => { if(userGeral.id === userGrupo.id) { // Certifica se é o mesmo usuário nos dois arrays.…
-
0
votes1
answer106
viewsA: Clear options field after selected value
When the findPendenciaRegional() method is called, you clear the Array that is used in ng for. this.regional = [];
-
0
votes1
answer916
viewsA: Passing parameter to Typescript method - Angular 7
You’re taking the Array in the click (click)="carregaProducao(funcionarios)" Being that you want to know the production of that specific employee is not? Then you have to pass only the employee per…