我喜欢创建两个 API,其中请求在一个 API 中获取信息,并在另一个 API 调用中插入到数据库。我怎么能在 Fiber 中实现这一点。
考虑以下代码块
func getName(c *fiber.Ctx) {
// get the name api
// call the insertName func from here with name argument
insertName(arg)
}
func insertName() {
// insert the argument to the database
}
如何在 Go Fiber 框架中使用 POST 调用第二个函数,以便我将有效负载传递给另一个 API。