我正在使用ngx-cookie-service,在检查或获取某些密钥时可以正常工作,但是在尝试删除时遇到了一些问题。 首先,当我尝试删除特定的Cookie时,例如
this.cookiesService.delete('COOKIE123');
它不起作用,只是继续而已,我也尝试使用
删除所有cookiethis.cookiesService.deleteAll('/');
但也不起作用,在最后一种情况下,我会报错
ERROR URIError: URI malformed
at decodeURIComponent
我在cookie.service.js的这一行中深入了代码
cookies[decodeURIComponent(currentCookie[0])] = decodeURIComponent(currentCookie[1]);
它破裂了,如。
U1234=%86%23%86%21%93%21%97%23%8A%21%88%22%8D%24%85%22%85%24
我正在使用angular 6.1.8和ngx-cookie-service 1.0.10
有什么建议吗?