摘要: package main import ( "fmt" "html/template" "log" "net/http" "strings" ) func sayhelloName(w http.ResponseWriter,r *http.Request){ //访问主体回应 r.ParseForm() //解析url传递的参数,对于POST则解析响应包的主体 //如果没有调用P... 阅读全文
posted @ 2018-05-05 17:56 Esiarp 阅读(866) 评论(0) 推荐(1)