Go 01 Nov 202301 RESTful Introduction to GolangIntroduction to RESTFul APIQuoted from the amazon website, RESTful API is an interface used by two computer … 4 mntRead
Go 17 Oct 202309 How To Use Streaming EncoderIntroduction to Stream EncodersApart from JSON Decoder, this JSON package can also support Encoder which is … 2 mntRead
Go 16 Oct 202308 How To Use Streaming DecoderIntroduction to Stream DecoderIn the previous article, we studied the JSON package by using conversion of JSON … 3 mntRead
Go 15 Oct 202307 How To Use MapsMap UseWhen we use JSON we sometimes encounter cases of dynamic JSON data, which means that the attributes … 2 mntRead
Go 14 Oct 202306 How to know JSON TagsIntroduction to JSON TagsBy default, if we create a struct and marshal it, it will be mapped according to the … 3 mntRead
Go 14 Oct 202305 How to know JSON ArrayIntroduction to JSON ArraysApart from JSON in Object form, usually in JSON we can also use the Array data … 3 mntRead
Go 13 Oct 202304 How to know Decode JSONIntroduction to JSON DecodingIn the previous article we learned to encode JSON and how to create a JSON … 3 mntRead
Go 12 Oct 202303 How to know JSON ObjectIntroduction to JSON ObjectsIn the previous article we studied encoding data such as string, number, boolean … 3 mntRead
Go 11 Oct 202302 Encode JSONIntroduction to JSON EncodingThe Golang language already provides functions for JSON data conversion needs, … 3 mntRead
Go 10 Oct 202301 Introduction PackageIntroduction to JSONJSON stands for JavaScript Object Notation which is a data format structure that looks … 2 mntRead
Go 08 Oct 202308 Create Middleware RouterUnderstanding MiddlewareHttpRouter is a library for creating an http router, it doesn’t have any other … 2 mntRead
Go 07 Oct 202307 Handle Not Allowed MethodUnderstanding Method Not AllowedWhen we use ServerMux, we cannot determine what HTTP Method we will use in the … 2 mntRead