Angular的框架特性有哪些优势?
- 内容介绍
- 文章标签
- 相关推荐
本文共计424个文字,预计阅读时间需要2分钟。
Angular Cookie 读写操作,代码示例如下:
javascriptvar app=angular.module('Mywind', ['ui.router']);
app.controller('Myautumn', function($scope, $http, $filter) { // Angular Cookie 写操作 $scope.addCookie=function(name, value, time, path) { var expires=; if (time) { var date=new Date(); date.setTime(date.getTime() + (time * 1000)); expires=; expires= + date.toUTCString(); } document.cookie=name + = + (value || ) + expires + ; path= + (path || /); };
// Angular Cookie 读操作 $scope.getCookie=function(name) { var nameEQ=name + =; var ca=document.cookie.split(';'); for(var i=0; i Angular Cookie 读写操作,代码如下所示:
var app = angular.module('Mywind',['ui.router'])
app.controller('Myautumn',function($scope,$http,$filter){
//angular Cookie写
//用法 :$scioe.addCookie("姓名",值,时间,"/")
$scope.addCookie = function(name, value, days, path) {
var name = decodeURI(name);
var value = decodeURI(value);
var expires = new Date();
expires.setTime(expires.getTime() + days * 3600000 * 24);
path = path == "" ? "" : ";path=" + path;
var _expires = (typeof days) == "string" ? "" : ";expires=" + expires.toUTCString();
document.cookie = name + "=" + value + _expires + path;
}
//angular Cookie读
//用法:$scope.getCookieValue("姓名")
$scope.getCookieValue = function(name) {
var name = decodeURI(name);
var allcookies = document.cookie;
name += "=";
var pos = allcookies.indexOf(name);
if(pos != -1) {
var start = pos + name.length;
var end = allcookies.indexOf(";", start);
if(end == -1) end = allcookies.length;
var value = allcookies.substring(start, end);
return(value);
} else {
return "";
}
};
})
到此这篇关于Angular Cookie 读写操作代码的文章就介绍到这了,更多相关Angular Cookie 读写内容请搜索自由互联以前的文章或继续浏览下面的相关文章希望大家以后多多支持自由互联!
本文共计424个文字,预计阅读时间需要2分钟。
Angular Cookie 读写操作,代码示例如下:
javascriptvar app=angular.module('Mywind', ['ui.router']);
app.controller('Myautumn', function($scope, $http, $filter) { // Angular Cookie 写操作 $scope.addCookie=function(name, value, time, path) { var expires=; if (time) { var date=new Date(); date.setTime(date.getTime() + (time * 1000)); expires=; expires= + date.toUTCString(); } document.cookie=name + = + (value || ) + expires + ; path= + (path || /); };
// Angular Cookie 读操作 $scope.getCookie=function(name) { var nameEQ=name + =; var ca=document.cookie.split(';'); for(var i=0; i Angular Cookie 读写操作,代码如下所示:
var app = angular.module('Mywind',['ui.router'])
app.controller('Myautumn',function($scope,$http,$filter){
//angular Cookie写
//用法 :$scioe.addCookie("姓名",值,时间,"/")
$scope.addCookie = function(name, value, days, path) {
var name = decodeURI(name);
var value = decodeURI(value);
var expires = new Date();
expires.setTime(expires.getTime() + days * 3600000 * 24);
path = path == "" ? "" : ";path=" + path;
var _expires = (typeof days) == "string" ? "" : ";expires=" + expires.toUTCString();
document.cookie = name + "=" + value + _expires + path;
}
//angular Cookie读
//用法:$scope.getCookieValue("姓名")
$scope.getCookieValue = function(name) {
var name = decodeURI(name);
var allcookies = document.cookie;
name += "=";
var pos = allcookies.indexOf(name);
if(pos != -1) {
var start = pos + name.length;
var end = allcookies.indexOf(";", start);
if(end == -1) end = allcookies.length;
var value = allcookies.substring(start, end);
return(value);
} else {
return "";
}
};
})
到此这篇关于Angular Cookie 读写操作代码的文章就介绍到这了,更多相关Angular Cookie 读写内容请搜索自由互联以前的文章或继续浏览下面的相关文章希望大家以后多多支持自由互联!

