我正在创建一个模板文字,如下所示:
const someVar = 'hello'
const str = `
Some random
multiline string with string interpolation: ${someVar}
`
然后在我的 Koa 应用程序中,我正在做:
this.cookies.set('str', str)
显然它不喜欢多行字符串,因为它给出了这个错误:
TypeError:参数值无效
有没有办法解决?在我的情况下,保持空白格式是非常必要的。