air icon indicating copy to clipboard operation
air copied to clipboard

browser return application/octet-stream (0 byte) when url TrailingSlash

Open tablecell opened this issue 4 years ago • 0 comments

package main

import (
	"bytes"
 	"github.com/aofei/air"
 )

var a = air.Default

func identicon(req *air.Request, res *air.Response) error {
 	return res.Write(bytes.NewReader(req.ParamValue("Name").Bytes()))
}
func main() {
	a.DebugMode = true
 
	a.GET("/identicons/:Name", identicon)
	a.Serve() //8080 
}

visit http://localhost:8080/identicons/

tablecell avatar Aug 19 '21 15:08 tablecell