1
目前,使用angularJS的$ cookieStore,我在逐個註銷時清除cookie。
$cookieStore.remove('gender');
$cookieStore.remove('username');
我檢查了控制檯中的$ cookieStore對象,發現它看起來像這樣。
Object {get: function, put: function, remove: function}
有沒有辦法清除$ cookieStore中的所有cookie而不刪除單個cookie?