Code Monkey home page Code Monkey logo

Comments (6)

Fenny avatar Fenny commented on May 1, 2024 10

Hey @cgiacomi, many web frameworks use the Context feature WithValue & Value to extend the Ctx. Fiber is really flexible and has a method called Locals (pass data between middlewares) which basically does the same. Let me show you an example:

package main

import "github.com/gofiber/fiber"

func main() {
  app := fiber.New()
  app.Post(Valiware())
  app.Post("/register", func(c *fiber.Ctx) {
    body := c.Locals("validator")
  })
  app.Listen(3000)
}

func Valiware() func(*fiber.Ctx) {
  // initiate your validator once
  vali := validator.New()
  return func(c *fiber.Ctx) {
    parsed, err := vali(c.Body())
    if err == nil {
      c.Locals("validator", parsed)
    }
    c.Next()
  }
}

This is just a basic example, you can implement your validator logic in a 1000 ways.

from fiber.

cgiacomi avatar cgiacomi commented on May 1, 2024 3

@Fenny tnx and sorry for the late reply, I saw the Locals method, but wasn't sure what the intended use was. I will try to see how it works out with that.

By the way great work with the framework... I usually use Echo, but looking at Fiber it feels more like what I like. Again tnx for the great work!

from fiber.

Fenny avatar Fenny commented on May 1, 2024 1

I'm closing this issue, if you got further questions feel free to re-open!

from fiber.

welcome avatar welcome commented on May 1, 2024

Thanks for opening your first issue here! ๐ŸŽ‰ Be sure to follow the issue template!

from fiber.

ansarizafar avatar ansarizafar commented on May 1, 2024

Here is an example how echo framework allow to customize context and validator
https://echo.labstack.com/guide/context
https://echo.labstack.com/guide/request

from fiber.

risardi123 avatar risardi123 commented on May 1, 2024

Hello, @Fenny why there is an error while make that function you give?, sorry i am very new in go language. Go fiber v2
image
image

from fiber.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.