如何使用redux中间件添加cookie的路径?

时间:2018-05-17 05:42:55

标签: cookies redux redux-middleware

我正在使用redux-cookies-middleware,我只能通过namevalue获取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 } }

1 个答案:

答案 0 :(得分:0)

初始化中间件时,您将需要使用setCookie选项。这是设置cookie时要调用的函数的占位符。一旦有了用于设置Cookie的自定义功能,您就可以更好地控制路径,域,有效期等。