为http请求追加cookie值

Posted Deolin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为http请求追加cookie值相关的知识,希望对你有一定的参考价值。

 

1、html中引入JQuery Cookie插件。

 

2、JS

    var expiresTime = new Date();
    expiresTime.setTime(expiresTime.getTime() + 0.5 * 60 * 1000);
    $.cookie(‘token‘, ‘曲奇饼干‘, {
        expires : expiresTime,  // 这里设置cookie过30分钟后失效,如果想指定天数,expiresTime改为数字即可
        path : ‘/‘
    });

 

3、后端

    /**
     * 请求:测试<br>
     * 取得Http请求中的Cookie
     *
     * @author Deolin
     */
    @RequestMapping(value = "get_cookie", method = RequestMethod.GET)  // 随便写个测试请求,由于path指定了/,所以任何请求中都带有了Cookie。
    @ResponseBody
    public String get_cookie(@CookieValue(value = "token", required = false) String token) throws Exception {
        if (token == null) {
            return "cookie取不到,超时或未点击“Set Cookie”。";
        }
        return token;
    }

 

 

详细代码

 

以上是关于为http请求追加cookie值的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 AJAX 请求设置 cookie 值?

c#如何采集需要登录的页面

HTTP首部(请求头,响应头)

使用 http 端点访问 lambda 中的 HTTP 请求(标头、查询字符串、cookie、正文)对象

HTTP转换为null什么意思?

html5中啥方法是用于网页传参的