码迷,mamicode.com
首页 > Web开发 > 详细

AngularJs Cookie 的使用

时间:2014-09-04 18:26:09      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   使用   ar   div   cti   

最新在学习 AngularJs ,发现网上很难搜到 AngularJs.Cookie 教程, 就自己写篇博客,希望能帮到刚学的人。

废话不多说上代码

首先要引用 angular-cookies.js

 

var myApp = angular.module("myApp", ["ngCookies"]);

myApp.controller("NavCtr", ["$cookieStore", function NavCtr($cookieStore) {
    $cookieStore.put("AngularJs", "xcccc");
    var xx = $cookieStore.get("AngularJs");
    console.info(xx);
}]);

 

 

$cookieStore  有三个方法 :

1:get(key)     获取cookie

2:put(key,value)   设置cookie

3:remove(key)    移除cookie

 

使用AngularJs Cookie  获取 cookie 时,获取的这个cookie 必须 是 AngularJs cookie 设置的cookie ,如果不是会抛异常

 

原文地址

AngularJs Cookie 的使用

标签:style   blog   http   color   io   使用   ar   div   cti   

原文地址:http://www.cnblogs.com/chengqi/p/3956431.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!