Level Up Your Web Apps With Go



Download 3,66 Mb.
Pdf ko'rish
bet35/37
Sana01.05.2022
Hajmi3,66 Mb.
#600662
1   ...   29   30   31   32   33   34   35   36   37
Bog'liq
level up your web apps with go

Chapter
3
HTTP
Sending and receiving HTTP requests is at the core of every web application. Go’s
standard library contains a variety of packages that make this easy for us to do. In
this chapter, we’ll discover how we can respond to requests, route requests through
middleware, create HTML templates, and create JSON responses

all with the
standard Go library.
Responding to Requests
Creating a web server in Go is simple. In most languages, another piece of software
is required for your application to be up and running on the Web, such as Apache
for a PHP application. Go’s standard library contains a package called
http
, which
is powerful enough to run a server without using third-party software.
While there are a few ways to do it, the quickest way is to register a function to be
run when a request is made whose URL matches a pattern. The function must have
the signature
func(w http.ResponseWriter, r *http.Request)
. After we’ve re-
gistered a function to run, we start the server with
http.ListenAndServe
:


1-hello-world/hello.go
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.

Request) {
fmt.Fprintf(w, "Hello Gopher")
})
http.ListenAndServe(":3000", nil)
}
In this example, we’ve registered a function to run when a request is made to any
path on port 3000. When run, the function uses
fmt.Fprintf
to write the string
“Hello Gopher”
to the response writer.
Pattern Matching
The pattern “/” matches all requests. Pattern matching needs a little more explan-
ation, so we’ll cover it in depth later in the chapter.
You can see it in action by building and running your code, then visiting
ht-
tp://127.0.0.1:3000
in your browser, which will look like Figure 3.1.
Figure 3.1. HTTP Hello World
Level Up Your Web Apps With Go
42



Download 3,66 Mb.

Do'stlaringiz bilan baham:
1   ...   29   30   31   32   33   34   35   36   37




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish