Coder Social home page Coder Social logo

Comments (4)

ofirdagan avatar ofirdagan commented on July 21, 2024

Hey, Can u give me more details what exactly not working? please try to debug and understand where in the flow you encounter problems

from cross-domain-local-storage.

bernardobarreto avatar bernardobarreto commented on July 21, 2024

I'm having problems with the get_key function which uses getItem, it doesnt
get the item, even when it is there. setItem is working fine...

2015-04-26 3:39 GMT-03:00 Ofir Dagan [email protected]:

Hey, Can u give me more details what exactly not working? please try to
debug and understand where in the flow you encounter problems


Reply to this email directly or view it on GitHub
#12 (comment)
.

github.com/bernardofire

from cross-domain-local-storage.

ofirdagan avatar ofirdagan commented on July 21, 2024

form looking at your code it looks like u will always return undefined for key

the getItem is an async function unlike regualr LocalStorage.. cross domain local storage needs to post a message to an internal iframe which makes it async.. so u should do something like:

function get_key(callback) {
  xdLocalStorage.getItem('cv-collector-id', function(data) { callback(data.value) });
}

Then the callback will be called with the value as the param..

hope it helps.

from cross-domain-local-storage.

bernardobarreto avatar bernardobarreto commented on July 21, 2024

Solved it using the callbacks! Thanks a lot!

from cross-domain-local-storage.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.