解析选项。

interface CookieParseOptions {
    decode?: ((str: string) => undefined | string);
}

属性

属性

decode?: ((str: string) => undefined | string)

指定一个函数,该函数将用于解码 cookie 值。由于 cookie 的值具有有限的字符集(并且必须是简单的字符串),因此可以使用此函数将先前编码的 cookie 值解码为 JavaScript 字符串。

默认函数是全局 decodeURIComponent,包裹在 try..catch 中。如果抛出错误,它将返回 cookie 的原始值。如果您提供自己的编码/解码方案,则必须确保适当处理错误。

decode