Results 2 issues of AimTao

## Error 「google」Submit the sitemap as follows: ![error](https://user-images.githubusercontent.com/46548984/78634657-01b28580-78d7-11ea-8b7b-b5dd2f4dfc7f.png) ## Solution ``` http://www.example.com/page 2018-06-04T18:00:15+00:00 ``` Remove the time after the date to submit successfully。 After modification, it changes to the following:...

gee-web/day5-middleware ### 背景 比如,我有三个路由地址: - /user/id - /user/task - /username 其中,/user 是一个 RouterGroup,上面配置了一个中间件 logger。 ### 问题 当我访问 /username 时,它并不属于 /user group,但也会匹配到这个中间件。 ### 原因 ServeHTTP 中的这个判断,会判断 /username 包含 /user。 ```go if...