Golang Template Learning

Source: Internet
Author: User
This is a creation in Article, where the information may have evolved or changed.

1. How to display pictures in HTML?

Enable static server: for example:

Http.handle ("/", HTTP. Fileserver (http. Dir ("/A"))): The reason for including/A is to open access rights under the/a directory. This gives you access to the/a/xx.jpg in HTML.

2. parse the HTML page, the href contains Chinese, download the problem?

 {{range .name}}       <a  href="{{.}}"></a></br>  {{end}}

A): When the template parses the previous segment code, {{.}} assumes that it is replaced by "hello. txt", and HREF=%E4%BD%A0%E5%A5%BD is automatically encoded when the source is displayed in the browser.

b): When clicking on the link href=%e4%bd%a0%e5%a5%bd, the URL must be converted to a character string before being submitted to the Golang server and then using the URL.  Queryunescape () to decode. in this way, the corresponding Chinese path or resource can be displayed in the background. Such as:

     photoname := strings.TrimPrefix(r.URL.String(), "/")     photoname, err := url.QueryUnescape(photoname)

Get the Photoname value: Hello. txt. ^.^

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.