go-fiber Questions
2
Solved
I am using golang fiber server, setup like this:
package main
import (
"go-auth/database"
"go-auth/routes"
"github.com/gofiber/fiber/v2"
"github.com/gofiber...
2
Solved
Original Question
When using the Update method in GORM the new data does not get saved. i.e. I want to set a bool from true to false, but it stays true even after the Update method.
In the descript...
1
Solved
I am getting the following error
panic: interface conversion: interface {} is float64, not int64
I am not sure where float64 is coming from here
I have type set to int64 but not sure where float64...
2
How would I read and change the values if I posted JSON data to /post route in gofiber:
{
"name" : "John Wick"
"email" : "[email protected]"
}
app.Po...
1
© 2022 - 2024 — McMap. All rights reserved.