第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

驗(yàn)證 Go 模板中的日期

驗(yàn)證 Go 模板中的日期

Go
米脂 2023-07-04 14:29:42
我試圖確保我的模板文件中有一個(gè)有效的日期,如果是的話(huà),填充一個(gè) div,否則將其留空。數(shù)據(jù)類(lèi)型是mysql.NullTime。這是我正在嘗試做的事情:{{ if .StartDate ne nil }}   <div class="box date-row" id="startdate-{{ .DepartureTimeID }}">{{ .StartDate.Format "2006-01-02" }}</div>{{ else }}   <div class="box date-row" id="startdate-{{ .DepartureTimeID }}"></div>{{ end }}這似乎確實(shí)有效,我如何測(cè)試非空日期?
查看完整描述

1 回答

?
元芳怎么了

TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超7個(gè)贊

如果它是強(qiáng)制值,您應(yīng)該在渲染模板之前對(duì)其進(jìn)行驗(yàn)證。

但是,如果它是可選的和/或您正在編寫(xiě)模板驅(qū)動(dòng)的應(yīng)用程序,那么您至少有兩個(gè)選項(xiàng)來(lái)實(shí)現(xiàn)您想要的。

僅使用零值

充分利用零值:因?yàn)?code>time.Time這就是epoch。因此,假設(shè)您不能擁有StartDate過(guò)去的日期,您可以比較您的 StartDate 是否在紀(jì)元之后。

package main


import (

? ? "html/template"

? ? "os"

? ? "time"

)


// Note the call to the `After` function of the date.

const templateText = `

{{ if .Data.StartDate.After .Epoch }}

? ?<div class="box date-row" id="startdate-{{ .Data.DepartureTimeID }}">{{ .Data.StartDate.Format "2006-01-02" }}</div>

{{ else }}

? ?<div class="box date-row" id="startdate-{{ .Data.DepartureTimeID }}">No date</div>

{{ end }}

`


func main() {


? ? ?// shortcut for the sake of brevity.

? ? tmpl := template.Must(template.New("titleTest").Parse(templateText))


? ? // Create an anonymous wrapper struct for your data and the additional

? ? // time value you need to compare against

? ? tcx := struct {


? ? ? ? // This of course may be of the type you actually use.

? ? ? ? Data struct {

? ? ? ? ? ? StartDate? ? ? ?time.Time

? ? ? ? ? ? DepartureTimeID int

? ? ? ? }

? ? ? ? Epoch time.Time

? ? }{

? ? ? ? Data: struct {

? ? ? ? ? ? StartDate? ? ? ?time.Time

? ? ? ? ? ? DepartureTimeID int

? ? ? ? }{time.Now(), 1},

? ? ? ? Epoch: time.Time{},

? ? }


? ? tmpl.Execute(os.Stdout, tcx)

}

package main


import (

? ? "html/template"

? ? "os"

? ? "log"

? ? "time"

)


const templateText = `

{{ if afterEpoch .StartDate }}

? ?<div class="box date-row" id="startdate-{{ .DepartureTimeID }}">{{ .StartDate.Format "2006-01-02" }}</div>

{{ else }}

? ?<div class="box date-row" id="startdate-{{ .DepartureTimeID }}"></div>

{{ end }}

`


func AfterEpoch(t time.Time) bool {

? ? return t.After(time.Time{})

}


type yourData struct {

? ? DepartureTimeID int

? ? StartDate? ? ? ?time.Time

}


func main() {

? ? funcMap := template.FuncMap{

? ? ? ? "afterEpoch": AfterEpoch,

? ? }


? ? tmpl := template.Must(template.New("fmap").Funcs(funcMap).Parse(templateText))


? ? log.Println("First run")

? ? tmpl.Execute(os.Stdout, yourData{1, time.Now()})



? ? log.Println("Second run")

? ? tmpl.Execute(os.Stdout, yourData{DepartureTimeID:1})

}

編輯:


當(dāng)然,您也可以對(duì)第二種解決方案使用管道表示法,即 by ,以提高可讀性,恕我直言:{{ if .StartDate | afterEpoch }}


查看完整回答
反對(duì) 回復(fù) 2023-07-04
  • 1 回答
  • 0 關(guān)注
  • 185 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)