如何使用响应对象上的 state() 方法在路由处理程序中设置 cookie?
How to set a cookie inside a route handler using the state() method on the response object?
我试图在我的响应对象之后使用状态方法在我的路由处理程序下创建一个 cookie,但该 cookie 没有以任何方式出现。即使在 hapijs 网站上粘贴许多示例也不起作用。
我的index.js:
const Hapi = require('hapi')
const server = new Hapi.Server
({
host: 'localhost',
port: 8000
})
server.route({
method: 'GET',
path: '/',
config: {
handler: (request, h) => {
return h.response(`Cookie!`).state('cookie-name', 'cookie-value');
}
}
})
async function start() {
await server.start();
console.log(`Server started at ${ server.info.uri }`);
}
start();
我原以为 'cookie-name' 会出现在开发者控制台的 'name' 下方,而 'cookie-value' 会显示为 'value'。没有任何显示,我在刷新本地主机时收到此错误消息:
Debug: internal, implementation, error
Error: Invalid cookie value: [object Object]
at exports.Definitions.internals.Definitions.internals.Definitions.format (/Users/cayden/Documents/egghead/introduction-to-node-servers-with-hapijs/lessons/12-hapi.js-managing-state-with-cookies/node_modules/hapi/node_modules/statehood/lib/index.js:361:24)
at process._tickCallback (internal/process/next_tick.js:68:7)
我建立 cookie 的方式与我在他们网站上看到的一个例子很接近。我错过了什么导致我的代码无法生成 cookie?
要合法设置cookie,您首先需要通过调用server.state(name, [options])
方法配置cookie,其中name 是cookie 名称。而 options 是配置该 cookie 的对象。
将这行代码添加到您现有的代码中:
server.state("cookie-name", {
ttl: null,
isSecure: false,
isHttpOnly: true,
clearInvalid: false,
strictHeader: true
});
server.route({
method: 'GET',
path: '/',
config: {
handler: (request, h) => {
return h.response(`Cookie!`).state('cookie-name', 'cookie-value');
}
}
})
希望现在您可以在开发浏览器中看到 cookie 及其值。
我试图在我的响应对象之后使用状态方法在我的路由处理程序下创建一个 cookie,但该 cookie 没有以任何方式出现。即使在 hapijs 网站上粘贴许多示例也不起作用。
我的index.js:
const Hapi = require('hapi')
const server = new Hapi.Server
({
host: 'localhost',
port: 8000
})
server.route({
method: 'GET',
path: '/',
config: {
handler: (request, h) => {
return h.response(`Cookie!`).state('cookie-name', 'cookie-value');
}
}
})
async function start() {
await server.start();
console.log(`Server started at ${ server.info.uri }`);
}
start();
我原以为 'cookie-name' 会出现在开发者控制台的 'name' 下方,而 'cookie-value' 会显示为 'value'。没有任何显示,我在刷新本地主机时收到此错误消息:
Debug: internal, implementation, error
Error: Invalid cookie value: [object Object]
at exports.Definitions.internals.Definitions.internals.Definitions.format (/Users/cayden/Documents/egghead/introduction-to-node-servers-with-hapijs/lessons/12-hapi.js-managing-state-with-cookies/node_modules/hapi/node_modules/statehood/lib/index.js:361:24)
at process._tickCallback (internal/process/next_tick.js:68:7)
我建立 cookie 的方式与我在他们网站上看到的一个例子很接近。我错过了什么导致我的代码无法生成 cookie?
要合法设置cookie,您首先需要通过调用server.state(name, [options])
方法配置cookie,其中name 是cookie 名称。而 options 是配置该 cookie 的对象。
将这行代码添加到您现有的代码中:
server.state("cookie-name", {
ttl: null,
isSecure: false,
isHttpOnly: true,
clearInvalid: false,
strictHeader: true
});
server.route({
method: 'GET',
path: '/',
config: {
handler: (request, h) => {
return h.response(`Cookie!`).state('cookie-name', 'cookie-value');
}
}
})
希望现在您可以在开发浏览器中看到 cookie 及其值。