Golang : How to use if, eq and print properly in html template
Alright, just a simple problem that took me a while to get it right. Putting the solution down here for my own future reference. The problem that I was trying to solve is to print out the word active
whenever the URL segment match certain word. For instance,
http://domain.com/addrow
the URL first segment is the word addrow
and therefore in the generated HTML code should have the <li class="active">
for Add Row
. Such as this
<ul>
<li class="active"><a href="/addrow" class="">Add Row</a></li>
<li class=""><a href="/deleterow" class="">Delete Row</a></li>
</ul>
To do this properly with html template language in Golang. First, create a function to get the current URI.
// GetURISegment - return URL item from a given position
func GetURISegment(r *http.Request, position int) string {
uriSegments := strings.Split(r.URL.Path, "/")
return uriSegments[position]
}
and follow by
templateDataMap["CurrentSegment"] = GetURISegment(r, 1)
// my own stuff, you should use your own
var dashboardPageNavigation = template.Must(template.New("dashboardPageNavigation").Parse(navigation.NavigationHTML))
the templateDataMap variable will be passed to NavigationHTML template.
In the NavigationHTML, check if the current URI segment name equals to the word that matches the navigation item names. If yes, print out the word active
<ul>
<li class="{{if(eq .CurrentSegment "addproperty")}}{{print "active"}}{{else}}{{print ""}}{{end}}"><a href="/addproperty" class="">Add Property</a></li>
<li class="{{if(eq .CurrentSegment "deleteproperty")}}{{print "active"}}{{else}}{{print ""}}{{end}}"><a href="/deleteproperty" class="">Delete Property</a></li>
</ul>
Too hard to read?
<ul>
<li class="{{if(eq .CurrentSegment "addproperty")}}
{{print "active"}}
{{else}}
{{print ""}}
{{end}}">
<a href="/addproperty" class="">Add Property</a>
</li>
<li class="{{if(eq .CurrentSegment "deleteproperty")}}
{{print "active"}}
{{else}}
{{print ""}}
{{end}}">
<a href="/deleteproperty" class="">Delete Property</a>
</li>
</ul>
Hope this helps and happy coding!
References:
https://socketloop.com/tutorials/golang-get-uri-segments-by-number-and-assign-as-variable-example
https://golang.org/pkg/text/template/#hdr-Functions <-- text/template but applicable to html/template as well
https://stackoverflow.com/questions/44240003/how-to-add-conditional-sentences-in-template
See also : Golang : Populate dropdown with html/template example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11.9k Golang : Split strings into command line arguments
+22.8k Golang : Get ASCII code from a key press(cross-platform) example
+7.5k Golang : Trim everything onward after a word
+14.9k Golang : Get timezone offset from date or timestamp
+8.6k Golang : GMail API create and send draft with simple upload attachment example
+14.9k Golang : How to add color to string?
+19.4k Golang : Measure http.Get() execution time
+5.9k Linux/Unix : Commands that you need to be careful about
+13.7k Golang : Reverse IP address for reverse DNS lookup example
+5k Javascript : Change page title to get viewer attention
+9.9k Golang : Print how to use flag for your application example
+5.9k PHP : How to handle URI or URL with non-ASCII characters such as Chinese/Japanese/Korean(CJK) ?