以下HTTPOnly
cookie did
在getServerSideProps
中无法通过Next JS
使用:
jid
cookie由位于网址Expressjs
的{{1}} API设置
我试图从位于URL https://api-dev.example.com
的Next JS应用程序获取cookie。
换句话说,该API在线,但是试图在https://localhost:3000
上获取cookie。
使用的localhost
方法:
getServerSideProps
这是控制台中打印的内容:
export const getServerSideProps = async (ctx) => {
console.log(ctx.req.headers.cookie);
return {
props: {},
};
};
打印的cookie都具有域_ga=GA1.1.1479601312.1604335288;
_gid=GA1.1.1556520191.1604335288;
_gat_gtag_...._1=1;
_nid=ey...Cn0drV6-ImMPY
,而不是localhost
。
有什么见解吗?