我遇到需要从子域(token
)设置cookie(account.test.com
)的情况。所以我使用angular-cookies实现了它。现在,在浏览器Cookie下,我看到token
的值为xyz
,/
的路径和.test.com
的域。
在test.com
中,我还将Cookie(orId
)设置为值pqrs
,将路径设置为/
,将域设置为test.com
。在test.com
开发工具中,我看到了account.test.com
设置的Cookie以及我能够阅读token
的完全正常的内容。
现在,我有一个用例从token
删除orId
和test.com
。我尝试使用angular-cookies $cookie.remove('token')
和$cookie.remove('orId')
。我看到只删除了orId
,但没有删除token
。因此,如何从父域token
中删除account.test.com
设置的test.com
。