Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7582925
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:33:23+00:00 2026-05-30T18:33:23+00:00

Let’s get to the point. This is what I want to do: I have

  • 0

Let’s get to the point. This is what I want to do: I have a bunch of userdata which I get from the server. I want to cache the data to avoid making requests to the server every time I need, say, the email or user’s name.

So, I’d build functions such as getEmail, getUsername, and so on, which make the Ajax call once and save it in an object. If the function is called again, it will return the cached object.

The app is divided in modules. App contains the data. Here is the fiddle:
http://jsfiddle.net/Osoascam/Nk6aw/

(open the console to see results)

Of course doing something like this:

var email = Module.Utilities.getEmail();

is wrong, as getEmail will call an Ajax function and thus email will remain undefined, even after the call is done. (I put that in the Fiddle to show what I’m trying to achieve). However, I can’t set the variable inside getEmail() function or the one that calls Ajax, as several scripts must be able to call that function and set their variables accordingly.

What’s the best way to do that? Make functions which retrieve a portion of an object return by an Ajax call in such a way that the call is made just once…

Thanks in advance,

Óscar

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T18:33:25+00:00Added an answer on May 30, 2026 at 6:33 pm

    Ajax request is by default asynchronous. So, getEmail() should accept a callback parameter…

    Module.Utilities.getEmail = function(next) {
      $.get('/api/getEmail/', function(res) {
        next(res);
      });
    };
    
    // when calling the function
    Module.Utilities.getEmail(function(email) {
      console.log(email);
    });
    

    That said, you could also look into synchronous ajax request…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have an Instant Messenger server using SignalR. I want to broadcast
Let's say I have a javascript array with a bunch of elements (anywhere from
Let's say I don't have photoshop, but I want to make pattern files (.pat)
Let's say I have a method in java, which looks up a user in
Let's say I have thousands of users and I want to make the passwords
Let's say I have a sortable list like this: $(.song-list).sortable({ handle : '.pos_handle', axis
Let's say I have a string like this: var str = /abcd/efgh/ijkl/xxx-1/xxx-2; How do
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
Let's say I have this code: <p dataname=description> Hello this is a description. <a
Let's say I have some text as follows: do this, do that, then this,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.