要将cookies传送到想要下载HTML的页面,可以通过以下步骤实现:
res.cookie('cookieName', 'cookieValue', { maxAge: 3600000, httpOnly: true });
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://example.com/download.html', true);
xhr.withCredentials = true; // 允许发送cookies
xhr.send();
app.use(function(req, res, next) {
res.header('Access-Control-Allow-Origin', 'http://example.com');
res.header('Access-Control-Allow-Credentials', true);
next();
});
通过以上步骤,你可以将cookies传送到想要下载HTML的页面。请注意,这只是一个基本的示例,实际情况可能会因具体的开发环境和需求而有所不同。
领取专属 10元无门槛券
手把手带您无忧上云