#74 Filtering | Using MongoDB with Express| A Complete NODE JS Course

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 พ.ย. 2024

ความคิดเห็น • 10

  • @LcyYoutube
    @LcyYoutube 3 หลายเดือนก่อน +1

    Nice guide on how to filter content based on query parameters.
    I hereby want to remind everyone to sanitize the query inputs to keep your application secure!

  • @chiteshpassi1014
    @chiteshpassi1014 ปีที่แล้ว +2

    Hello you’r lectures are amazing.
    Can you make new lectures for design patterns or Postgresql.
    You guys are really doing the good work.
    Thanks in advance.

  • @rasel_sharif
    @rasel_sharif 11 หลายเดือนก่อน

    thanks for this tutotial. it's help me too much.

  • @hassannouri9796
    @hassannouri9796 3 หลายเดือนก่อน

    ❤❤❤

  • @codezeloss
    @codezeloss ปีที่แล้ว +1

    Thanks!!!

  • @AnimeBoyYT
    @AnimeBoyYT 9 หลายเดือนก่อน

    i use Number(val) to convert string to num for fail safe approach

  • @Charliegaming9921
    @Charliegaming9921 ปีที่แล้ว +2

    What if I want to filter by genre

    • @BikmeevD
      @BikmeevD 5 หลายเดือนก่อน

      did you find a way how to do it?

    • @acupoflie
      @acupoflie 3 หลายเดือนก่อน

      You can add special filter for that f.e request query
      localhost:3000/api/v1/movies?genres=Thriller,Action
      then in code
      const genres = req.query.genres ? req.query.genres.split(',').map(genre => genre.trim())
      const genreQuery = genres > 0 ? { genre: { $all: genres } }: {};
      const movies = Movie.find(genreQuery)