我正在使用redux-cookies-middleware
,我只能通过name
和value
获取Cookie。但如果我需要添加path
我应该如何传递它?
{
session: {
name: 'session' // name of the cookie in which the value of session will be synced
},
'auth.token': {
name: 'auth_token' // name of the cookie in which the value of auth.token will be synced
}
}
答案 0 :(得分:0)
初始化中间件时,您将需要使用setCookie
选项。这是设置cookie时要调用的函数的占位符。一旦有了用于设置Cookie的自定义功能,您就可以更好地控制路径,域,有效期等。