fanws cookie 是什么?
what's the fanws cookie?
我使用 BedSheet 编写了一个简单的网站来测试添加 cookie。当我 运行 代码并使用 firebug 检查 cookie 时,我发现了一个我没有添加的额外 cookie,名为 fanws
(值为 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>")
}
}
这个cookie是什么?这有什么用途?这个值是从哪里来的?
fanws
代表 Fanton Web Session
并由 wisp
网络服务器添加以管理会话。该值只是一个唯一标识会话的 UUID。
您可以在 Web Sessions 上的 web
连播文档中阅读更多内容。
我使用 BedSheet 编写了一个简单的网站来测试添加 cookie。当我 运行 代码并使用 firebug 检查 cookie 时,我发现了一个我没有添加的额外 cookie,名为 fanws
(值为 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>")
}
}
这个cookie是什么?这有什么用途?这个值是从哪里来的?
fanws
代表 Fanton Web Session
并由 wisp
网络服务器添加以管理会话。该值只是一个唯一标识会话的 UUID。
您可以在 Web Sessions 上的 web
连播文档中阅读更多内容。