잠시만 기다려 주세요

     '바다아이 사이트는 윤석열 정부 탄핵을 지지합니다.'
전체검색 :  
이번주 로또 및 연금번호 발생!!   |  HOME   |  여기는?   |  바다물때표   |  알림 (16)  |  여러가지 팁 (1056)  |  추천 및 재미 (155)  |  자료실 (22)  |  
시사, 이슈, 칼럼, 평론, 비평 (606)  |  끄적거림 (129)  |  문예 창작 (705)  |  바람 따라 (69)  |  시나리오 (760)  |  드라마 대본 (248)  |  
살인!


    golang

golang - Go Template Examples, 템플릿 예제
이 름 : 바다아이   |   조회수 : 11049         짧은 주소 : https://www.bada-ie.com/su/?191591801684
The Go language's template package has introduced a set of new APIs in r60. (To keep using the old template package, you'll need to change import "template" to import "old/template".) This post includes a collection of code snippets to illustrate how to use the new template package.
 

Parse a template string

t, _ := template.New("template_name").Parse("Go")
t.Execute(os.Stdout, nil)

// output: Go
 

Parse a template file

t, _ := template.New("template_name").ParseFile("external.file")
t.Execute(os.Stdout, nil)

// output: content of external.file
 

Print to a string buffer

t, _ := template.New("template_name").Parse("Go")
buf := new(bytes.Buffer)
t.Execute(buf, nil)

// buf.String() == "Go"
 

Substitute a single parameter

t, _ := template.New("template_name").Parse("<h1>{{.}}</h1>")
t.Execute(os.Stdout, "Joseki")

// output: <h1>Joseki</h1>
 

Substitute multiple parameters in a struct

type dict struct {
  // struct fields must be public
  Title string
  Release int
}
params := &dict{Title: "Go", Release: 60}
t, _ := template.New("template_name").Parse(
    "<h1>{{.Title}}</h1>r{{.Release}}")
t.Execute(os.Stdout, params)

// output: <h1>Go</h1>r60
 

Substitute multiple parameters in a map

t, _ := template.New("template_name").Parse(
    "<h1>{{.title}}</h1>r{{.release}}")
// field names don't have to be capitalized
params := map[string]interface{}{"title": "Go", "release": 60}
t.Execute(os.Stdout, params)

// output: <h1>Go</h1>r60
 

Conditionally fill in parameters

t, _ := template.New("template_name").Parse(
    "{{if .white}}Gote{{else}}Sente{{end}}{{if .excl}}!{{end}}")
t.Execute(os.Stdout, map[string]bool{"excl": true})

// output: Sente!
 

Iteratively fill in parameters

t, _ := template.New("template_name").Parse(
    "{{range .}}{{.}}!{{else}}Tengen{{end}}")
t.Execute(os.Stdout, [...]string{"Hoshi", "Komoku", "Sansan"})

// output: Hoshi!Komoku!Sansan!
 

Escape parameters

t, _ := template.New("html").Parse(
    "<a href='/?q={{.query | urlquery}}'>q={{.text | html}}</a>")
t.Execute(os.Stdout, map[string]string{"text": "&", "query": "&"})

// output: <a href='/?q=%26'>q=&amp;</a>
 

Nest templates (deprecated API)

ts := new(template.Set)
tparent, _ := template.New("parent").Parse(
    "<i>{{template \"child\" .}}</i>")
tchild, _ := template.New("child").Parse(
    "<b>{{.lang}}</b>")
ts.Add(tparent, tchild)
ts.Execute(os.Stdout, "parent", map[string]string{"lang": "Go"})

// output: <i><b>Go</b></i>
 

Parse a template set (deprecated API)

ts := new(template.Set)
ts.Parse(`{{define "parent"}}<i>{{template "child" .}}</i>{{end}}
    {{define "child"}}<b>{{.lang}}</b>{{end}}`)
ts.Execute(os.Stdout, "parent", map[string]string{"lang": "Go"})

// output: <i><b>Go</b></i>
 

Nested templates

t, _ := template.New("parent").Parse(`<i>{{template "child" .}}</i>`)
t.New("child").Parse(`<b>{{.lang}}</b>`)
t.ExecuteTemplate(os.Stdout, "parent", map[string]string{"lang": "Go"})
// output: <i><b>Go</b></i>

Defined templates

t, _ := template.New("").Parse(
    `{{define "golang"}}golang{{end}} {{define "go"}}Go{{end}}`)
t.ExecuteTemplate(os.Stdout, "go", nil)
// output: Go


출처 : http://blog.zmxv.com/2011/09/go-template-examples.html


| |





      1 page / 6 page
번 호 카테고리 제 목 이름 조회수
179 golang golang , ... 바다아이 1732
178 golang golang , map . 바다아이 1336
177 golang Golang (, , data ) , ... 바다아이 1344
176 golang golang sort ... 바다아이 1573
175 golang golang html.EscapeString html.UnescapeString input value ... 바다아이 1703
174 golang golang go.mod go.sum . GOPATH SRC not module, 1.16 . 바다아이 4976
173 golang go 1.16 ... is not in GOROOT.. GOPATH .... . 바다아이 5882
172 golang , String Formatting 바다아이 7514
171 golang rand.Intn , random, , . 바다아이 6973
170 golang golang ... 바다아이 10062
169 golang golang gopath, goroot .. golang 바다아이 7651
168 golang golang ... Force download file example 바다아이 9434
167 golang golang , , cpu, memory, disk 바다아이 10732
166 golang golang , ... GOOS, GOARCH 바다아이 8510
165 golang golang checkbox ... 바다아이 8258
164 golang golang , , http .... 바다아이 8030
163 golang golang nil , nil , nil ... 바다아이 8377
162 golang 2 golang, go , .... golang .... 바다아이 11246
161 golang golang postgresql, mysql, mariadb ... ` Grave () .. .. 바다아이 8562
160 golang golang postgresql mysql, mariadb scan , null .. 바다아이 8707
159 golang golang , iconv 바다아이 11499
158 golang golang quote escape, unquote 바다아이 8907
157 golang golang , http errorLog , , ... 바다아이 9009
156 golang golang interface , 바다아이 8487
155 golang golang struct .... 바다아이 9153
154 golang golang map map , 바다아이 8679
153 golang golang map .... .... 바다아이 8196
152 golang golang slice copy 바다아이 8297
151 golang golang goto 바다아이 9158
150 golang golang slice sort , int, string, float64 바다아이 8639
| |









Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천  실행시간 : 0.05567
to webmaster... gogo sea. gogo sea.