Create a constant session in Meteor javascript -
i building web store using meteor , having issues adding items cart. right now, each cart uniquely identified session id. however, if have 2 browser tabs open, each tab have own session id. therefore, there method or technique can use create session id constant across browser tabs?
thank you!
you have 2 option here:
save on temporary collection on server persist across browsers / devices.
use localstrorage persist acroos tab on same browser. take amplifyjs store , meteor-persistent-session.
Comments
Post a Comment