“Wie man Cookie im Knoten JS setzt” Code-Antworten

Stellen Sie den Keks im Knoten ein

res.setHeader('Set-Cookie','visited=true; Max-Age=3000; HttpOnly, Secure');
Scary Snail

Wie man Cookie im Knoten JS setzt

const express('express')
    , cookieParser = require('cookie-parser'); // in order to read cookie sent from client

app.get('/', (req,res)=>{

    // read cookies
    console.log(req.cookies) 

    let options = {
        maxAge: 1000 * 60 * 15, // would expire after 15 minutes
        httpOnly: true, // The cookie only accessible by the web server
        signed: true // Indicates if the cookie should be signed
    }

    // Set cookie
    res.cookie('cookieName', 'cookieValue', options) // options is optional
    res.send('')

})
Dizzy Dog

Ähnliche Antworten wie “Wie man Cookie im Knoten JS setzt”

Fragen ähnlich wie “Wie man Cookie im Knoten JS setzt”

Weitere verwandte Antworten zu “Wie man Cookie im Knoten JS setzt” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen