我使用 BedSheet 编写了一个简单的站点来测试添加 cookie。当我运行代码并使用 firebug 检查 cookie 时,我发现了一个额外的 cookie,我没有添加命名fanws
(带有 value 06e3d816-7626-7b00-205a-0013e8a56e9d-dbc9c6c8fa03cfa4
)。
这是我的代码:
class Site
{
@Inject HttpCookies? cookie
@Contribute { serviceType=Routes# }
static Void contributeRoutes(Configuration Conf)
{
Conf.add(Route(`/index.html`, Site#index))
}
Text index()
{
cookie.add(Cookie("foo", "123"))
return Text.fromHtml("<h1> Hello </h1>")
}
}
这是什么饼干?它是干什么用的?这个价值是从哪里来的?