©
Dokumen ini menggunakanManual laman web PHP CinaLepaskan
Provides a key-value (string-object) storage, that is backed by session cookies. Objects put or retrieved from this storage are automatically serialized or deserialized by angular's toJson/fromJson.
Requires thengCookies
module to be installed.
$cookies
get(key);
Returns the value of given cookie key
参数 | 类型 | 详述 |
---|---|---|
key | string | Id to use for lookup. |
Object | Deserialized cookie value. |
put(key,value);
Sets a value for given cookie key
参数 | 类型 | 详述 |
---|---|---|
key | string | Id for the |
value | Object | Value to be stored. |
remove(key);
Remove given cookie
参数 | 类型 | 详述 |
---|---|---|
key | string | Id of the key-value pair to delete. |
angular.module('cookieStoreExample',['ngCookies']).controller('ExampleController',['$cookieStore',Function($cookieStore){// Put cookie$cookieStore.put('myFavorite','oatmeal');// Get cookievarfavoriteCookie=$cookieStore.get('myFavorite');// Removing a cookie$cookieStore.remove('myFavorite');}]);