How to create JSON data in golang

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ม.ค. 2025

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

  • @SagarSingh-vf5zo
    @SagarSingh-vf5zo ปีที่แล้ว +2

    you did an awesome job, I am a complete beginner, just started coding 2 months ago but still I am able to grasp all these topics that seemed very difficult in the beginning, I will practise it again so that i am able to understand it better.
    Thank you.

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

    Thank you so much sir! Greetings from Turkey♥

  • @mohirashaikh6432
    @mohirashaikh6432 27 วันที่ผ่านมา

    I came across this as a dumb error but after watching the password hiding process I have a doubt... so in the struct declaration one of my variable name (tags) had the first letter in lower case so it would not get exported by json and be displayed in fmt... so instead of hiding it cant we just make the password field's first letter small?

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

    Super simple as always 🌟❤️

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

    thank you for this amazing course but i have a little question about the output of the marshal json i get a byte slice as an output until i change it to string(finalJson) why

  • @danielvega646
    @danielvega646 7 หลายเดือนก่อน

    Brutal! JSON from Go :D

  • @davida.7586
    @davida.7586 3 ปีที่แล้ว

    Nice and useful tutorial !
    Thanks!

  • @YouAndImpact
    @YouAndImpact 3 ปีที่แล้ว

    Great video 👍

  • @kwizerasam7
    @kwizerasam7 3 ปีที่แล้ว

    Great video as always. Thank you

  • @higiniofuentes2551
    @higiniofuentes2551 8 หลายเดือนก่อน

    Thank you for this very useful video!

  • @bhumit070
    @bhumit070 3 ปีที่แล้ว

    sir I am trying to do this but getting buffer instead of json

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

    Thank you so much. Great video!

  • @aminwhat6202
    @aminwhat6202 2 ปีที่แล้ว

    Love you man❤

  • @rakeshchavan7839
    @rakeshchavan7839 2 ปีที่แล้ว

    I am getting null values while printing the JSON values. did the same as above.

    • @rahulbhandari1644
      @rahulbhandari1644 ปีที่แล้ว

      getting same error did you find any sol?

    • @rahulbhandari1644
      @rahulbhandari1644 ปีที่แล้ว

      I got the solution you have to define the struct fields like course with capital letter Course for export other it will stay as private field

    • @rakeshchavan7839
      @rakeshchavan7839 ปีที่แล้ว

      @@rahulbhandari1644 Yes, Thanks.

  • @scitechplusexplorer2484
    @scitechplusexplorer2484 7 หลายเดือนก่อน +2

    Haanji, Chai aur Code ki audience hai hum, par golang aapse seekhne yahan aaye hai!
    Kabhi Chai aur Code par bhi charcha kare Golang par, maza aayega.🙂🙂🙂

  • @prajwalmallesh8493
    @prajwalmallesh8493 2 ปีที่แล้ว

    can you make a video on mssql TVP in golang?

  • @sharbelokzan9673
    @sharbelokzan9673 3 ปีที่แล้ว +5

    I still don't get it why people like this language! This is so confusing way to handle json compared to other languages

  • @MuhammedMuhammed-of5bd
    @MuhammedMuhammed-of5bd 5 หลายเดือนก่อน

    thankyou sir

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

    is anyone else getting bytecode of the json data and has to use the string() method to get the real json data?

    • @mohirashaikh6432
      @mohirashaikh6432 27 วันที่ผ่านมา

      that's because sir is using %s in the Print'f' function while were using Print'ln' so we have to surround it by the string function the %s basically does the same in print'f'

    • @aradhymishra1861
      @aradhymishra1861 27 วันที่ผ่านมา

      @@mohirashaikh6432 yeah i also got it thanks tho

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

    sir chai aur code me golang tutorial chayihe

  • @JeeveshKumar-f1
    @JeeveshKumar-f1 3 หลายเดือนก่อน

    type course struct {
    Name string `json:"name"`
    Price int
    Platform string `json:"website"`
    Password string `json:"-"`
    Tags []string `json:"tags,omitempty"`
    }
    in this code i used small t for tags and it was not being displayed because it was not exported. it should be cap only.

  • @Randomguy48279xyz
    @Randomguy48279xyz 3 ปีที่แล้ว

    👍

  • @dhanushshetty4321
    @dhanushshetty4321 26 วันที่ผ่านมา

    hi