Home > database >  Open new tab browser and pass value without localstorage angular
Open new tab browser and pass value without localstorage angular

Time:03-10

i need pass data of a component to other in new tab of browser without localStorage. The fist component has a struct json many complex to pass through localStorage because i'm working with image in base64 and if i use service they values are undefined. How do this?

CodePudding user response:

On an high level - NOT POSSIBLE

Opening an application in a new tab will create a whole new instance of angular running in that tab, So it is not possible to share data among two different tabs without localstorage.

  • Related