【发布时间】:2014-02-08 02:13:51
【问题描述】:
我正在使用 Grails 应用程序并创建不同的 cookie。
有些出现在 chrome console Resources TAB 中,有些没有显示。
我需要使用 Angularjs 获取这些 Cookie 的值,并且只能访问在 console Resources TAB 上显示的那个。
其他 cookie 在 Chrome Content settings button 中可见。
在Cookies section 中,但不在Chrome 中console Resources TAB。
所有 cookie 的创建方式都相同:
Cookie cookie = new Cookie("username", username)
cookie.maxAge = 1209600 //14 days
cookie.httpOnly = true
response.addCookie(cookie)
感谢您的帮助。
【问题讨论】:
标签: javascript angularjs google-chrome grails cookies