Posts by Guilherme Abacherli • 46 points
3 posts
-
1
votes1
answer54
viewsA: Send button id by ajax to update database
You are making AJAX requests using protocol HTTP with Javascript language in frontend: $.ajax({ method: "post", //Escolhe o método de envio url: "/fetch.php", //O endereço do script php que fará o…
-
0
votes2
answers62
viewsA: Update item quantity in table
Within the data(){return{}} the variables you are using are declared. In your case, only one variable is declared, quantidade: 1 data() { return { quantidade: 1, Opcionais: [ { Code: 1, Nome:…
-
2
votes2
answers106
viewsA: Standardization in building Rest api with Vraptor
1. You note your method with: Requests are also noted, for example> @Get("/") 2. Tries to send parameters on request and receives 405 status in response: but when I have to send parameters the…