Angular Cookie read and write operation code

Angular Cookie read and write operation code

Angular Cookie read and write operations, the code is as follows:

var app = angular.module('Mywind',['ui.router'])
app.controller('Myautumn',function($scope,$http,$filter){
//angular Cookie write//Usage: $scioe.addCookie("name", value, time,"/")
$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 reading //Usage: $scope.getCookieValue("name")
  $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 "";
    }
  };
})

This is the end of this article about Angular Cookie reading and writing operation code. For more relevant Angular Cookie reading and writing content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Cookie reading and writing methods in angular
  • AngularJS Getting Started Tutorial: Cookies Read and Write Operation Examples

<<:  Summary of various methods of implementing article dividing line styles with CSS

>>:  How to center your HTML button

Recommend

How to set horizontal navigation structure in Html

This article shares with you two methods of setti...

Vue routing to implement login interception

Table of contents 1. Overview 2. Routing Navigati...

Implementing a simple calculator based on JavaScript

This article shares the specific code of JavaScri...

Detailed explanation of mysql permissions and indexes

mysql permissions and indexes The highest user of...

Solution to forgetting the root password of MySQL 5.7 and 8.0 database

Note: To crack the root password in MySQL5.7, you...

The difference between the four file extensions .html, .htm, .shtml and .shtm

Many friends who have just started to make web pag...

How to install Mysql5.7 in Centos6

environment Centos 6.6 MySQL 5.7 Install If the s...

Details on how to use class styles in Vue

Table of contents 1. Boolean 2. Expression 3. Mul...

VMware virtual machine installation Apple Mac OS super detailed tutorial

Table of contents Summarize Sometimes we need to ...

Differences between ES6 inheritance and ES5 inheritance in js

Table of contents Inheritance ES5 prototype inher...

How to deploy a simple c/c++ program using docker

1. First, create a hello-world.cpp file The progr...

Various ways to modify the background image color using CSS3

CSS3 can change the color of pictures. From now o...

The use of anchor points in HTML_PowerNode Java Academy

Now let's summarize several situations of con...

Building the User Experience

<br />Maybe you've just come into a comp...