我可以从服务器将数据插入 Web Storage ,就像我通过设置标头来使用cookie一样。通过 Web存储我的意思是HTML5 localeStorage 和 sessionStorage 。
答案 0 :(得分:1)
当然。但是您的服务器需要将代码注入它所服务的页面中。
从服务器开始,这段代码需要注入到正文或额外的javascript文件中。
<script type="text/javascript">
localStorage[key] = myValue;
</script>
答案 1 :(得分:0)
以C#为例;
ClientScript.RegisterClientScriptBlock(GetType(), "sas", "<script>
if(typeof(Storage)!=="undefined")
{
// Yes! localStorage and sessionStorage support!
// Some code.....
}
else
{
// Sorry! No web storage support..
};</script>", true);