HTTPOnly cookie在Next JS的getServerSideProps中不可用

时间:2020-11-02 19:14:58

标签: javascript cookies next.js httponly

以下HTTPOnly cookie didgetServerSideProps中无法通过Next JS使用:

enter image description here

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

有什么见解吗?

0 个答案:

没有答案