将 cookie 的值设置为模板文字?

Setting a cookie's value to a template literal?

我正在创建一个模板文字,如下所示:

const someVar = 'hello'    

const str = `
  Some random
  multiline string with string interpolation: ${someVar}
`

然后在我的 Koa 应用程序中,我正在做:

this.cookies.set('str', str)

显然它不喜欢多行字符串,因为它给出了这个错误:

TypeError: argument value is invalid

有什么办法解决这个问题吗?在我的例子中,保留空白格式是非常必要的。

这与模板文字无关;当您收到错误时,您已经有了一个包含换行符的字符串。 cookie 值中不能有换行符。

可能保留这些换行符的最好方法是使用 JSON:

this.cookies.set('str', JSON.stringify(str));

当然,使用的时候需要JSON.parse

当然,您不必使用 JSON;你可以使用 URI 编码:

this.cookies.set('str', encodeURIComponent(str));

...然后用 decodeURIComponent(或任何消耗字符串的等价物)对其进行解码。