duanbipu1720 2018-01-26 20:08
浏览 190
已采纳

在Golang服务器中设置Cookie后,无法在Chrome检查应用程序Cookie中看到Cookie

Here is a simplify version of my golang server.

package main

import (
    "fmt"
    "net/http"
    "log"
    "time"
)

func sayhelloName(w http.ResponseWriter, r *http.Request) {

    fmt.Fprintf(w, "Hello name!") // send data to client side
    expiration := time.Now().Add(365 * 24 * time.Hour)
    cookie := http.Cookie{Name: "username", Value: "myusernmae", Expires: expiration}
    http.SetCookie(w, &cookie)
    cookie = http.Cookie{Name: "username2", Value: "myusernmae", Expires: expiration}
    http.SetCookie(w, &cookie)

}

func main() {
    http.HandleFunc("/", sayhelloName) // set router
    err := http.ListenAndServe(":9090", nil) // set listen port
    if err != nil {
        log.Fatal("ListenAndServe: ", err)
    }
}

I am trying to set a cookie to the client. But after hitting http://localhost:9090/ I don't see the cookie name: username I set.

Am I doing the cookie setting correct?

  • 写回答

1条回答 默认 最新

  • duanqiang6501 2018-01-26 20:17
    关注
    func sayhelloName(w http.ResponseWriter, r *http.Request) {
    
       expiration := time.Now().Add(365 * 24 * time.Hour)
       cookie := http.Cookie{Name: "username", Value: "astaxie", Expires: expiration}
       http.SetCookie(w, &cookie)
       cookie = http.Cookie{Name: "username2", Value: "astaxie", Expires: expiration}
       http.SetCookie(w, &cookie)
       fmt.Fprintf(w, "Hello name!") // send data to client side
    }
    

    you should send data to client only after setting the cookie

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序
  • ¥15 onvif+openssl,vs2022编译openssl64
  • ¥15 iOS 自定义输入法-第三方输入法
  • ¥15 很想要一个很好的答案或提示
  • ¥15 扫描项目中发现AndroidOS.Agent、Android/SmsThief.LI!tr
  • ¥15 怀疑手机被监控,请问怎么解决和防止
  • ¥15 Qt下使用tcp获取数据的详细操作
  • ¥15 idea右下角设置编码是灰色的
  • ¥15 全志H618ROM新增分区
  • ¥15 在grasshopper里DrawViewportWires更改预览后,禁用电池仍然显示