如何在 R-Apache 中获取 cookie 的值?
我使用 brew 在我的 html 代码中设置了 cookie:
setCookie(name="ID",value=paste(sample(1:9999,1)))
我的页面有一个表单,可以将发布数据发送到我的 R 代码。我怎样才能在 R 代码中检索这个 cookie?
谢谢!
也许使用RApache 的内置变量: COOKIES
。简短的例子:
setCookie(name="ID",value=paste(sample(1:9999,1)))
cat(COOKIES[["ID"]])