美文网首页
2018-Get/post访问

2018-Get/post访问

作者: 磨砂呀搜索 | 来源:发表于2018-09-24 14:01 被阅读8次

    get

    url:="http://www.baidu.com"  /

      resp,err:=http.Get( " ...http...") /  if  err!=nil /panin(err)   /  defer  rest.Body.Close( )  /

     body,err :=ioutil.ReadAll(resp.Body)  /  fmt.println(string (body))

    post

    resp,err := http.Post ( "...","application/x-www-form-urlencoded",strings.Newreader( "...=..."))


    正则表达式

    . 匹配除换行符以外的任意字符    ,

     \ w  匹配字母,数字,下划线,汉字    ,

     \ s   匹配任意的空白符

    \ d    匹配数字

    \ b     匹配单词的开始或结束

    ^   ,  $   匹配字符串的开始和结束

    *  重复0次或更多次    +  重复1次或更多次    ?  重复0次或1次    { n } 重复n次     {n,}或{0,}  重复n次或更多次   {n,m}   重复n次到m次

    相关文章

      网友评论

          本文标题:2018-Get/post访问

          本文链接:https://www.haomeiwen.com/subject/jluanftx.html