Posts by Thiago • 17 points
4 posts
-
-1
votes1
answer74
viewsQ: If ternary in jsx is not working
I’m new to React and I’m trying to implement a route control, so I created an Auth file: const Auth = { isAdmin: false, authenticate(){ this.isAdmin = true }, signout(){ this.isAdmin = false },…
-
0
votes1
answer315
viewsA: Problem to edit an object in spring boot + Thymeleaf?
I found the problem, but I don’t understand why. If I change the @GetMapping("/editpost/{id}") for @GetMapping("/editpost{id}") it works normally.…
-
-1
votes1
answer315
viewsQ: Problem to edit an object in spring boot + Thymeleaf?
This is my controller: @GetMapping("/editpost/{id}") public ModelAndView editPost(@RequestParam(name="id")long id) { Post postFound = nb.findById(id).get(); ModelAndView mv = new…
-
1
votes1
answer206
viewsQ: How to show number of pages in handlebars paging?
This is my code to calculate the number of pages, here is calculating everything correctly, already tested. app.get("/page/:page", (req, res) => { var perPage = 3 , page = Math.max(0,…