Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

angular 8 set cookie to string

import { CookieService } from 'ngx-cookie-service';

constructor( private cookieService: CookieService ) { }

ngOnInit(): void {
  this.cookieService.set( 'name', 'Test Cookie' ); // To Set Cookie
  this.cookieValue = this.cookieService.get('name'); // To Get Cookie
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #angular #set #cookie #string
ADD COMMENT
Topic
Name
2+7 =