Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a question. I'm trying to create an AJAX framework for a project (since they won't allow 3rd party frameworks such as jQuery to be used). However, I am having problems with dynamic namespacing when I call it in the onreadystatechange function.

This is the sample ajax function:

/**
 * This function wraps the XMLHttpRequest function.
 * 
 * String @param params.method - GET/POST 
 * String @param params.type - xml/text, 
 * String @param params.url - the target URL
 * String @param params.onSuccess - the function to be called after a successful request
 * String @param params.data - parameters that need to be passed to the target URL
 * String @param params.asynchronous -  true/false
 */
PTM.ajax = function(params)
{
    var request = null;
    var method = null;
    var url = null;
    var data = "client_id=" + PTM.clientId;
    var asynchronous = (params.asynchronous == null) ? true : params.asynchronous;

    // Instantiate the correct XML Http Request Object
    var msxmls = [
                  "Msxml2.XMLHTTP.5.0",
                  "Msxml2.XMLHTTP.4.0",
                  "Msxml2.XMLHTTP.3.0",
                  "Msxml2.XMLHTTP",
                  "Microsoft.XMLHTTP"
    ];

    for (var i=0; i < msxmls.length; i++)
    {
        try
        {
            request = new ActiveXObject(msxmls[i]);
        }
        catch (e) {}
    }
    if (request == null) throw new Error("Could not instantiate XMLHttpRequest");

    // Response
    request.onreadystatechange = function()
    {   
        // The response is ready.
        if ((request.readyState == 4) && (request.status == 200))
        {
            // Response Type
            var response_type = (params.type == 'xml') ? request.responseXML : request.responseText;
            PTM[params.onSuccess](response_type);           
        }
    };

    // HTTP Verb to be used.
    method = params.method.toUpperCase();

    // Data
    data = (params.data == null) ? data : data + "&" + params.data; 

    // URL
    url = (method == "GET") ? params.url + "?" + data : params.url;

    request.open(method, url, asynchronous);
    request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    request.setRequestHeader("Content-length", data.length);
    request.send(data); 
};

This is how I use the function above:

PTM.ajax({
    method: "POST",
    type: "txt", 
    url: urlTarget, // please delete this line when using actual code
    onSuccess: callbackFunction, 
    data: "data=" + data,
    asynchronous: false
});

What if I wanted the 'callbackFunction' to be in another namespace? Say 'INIT.testCallbackFunction()' ?

This part is where I'm having a problem.

            // Response Type
            var response_type = (params.type == 'xml') ? request.responseXML : request.responseText;
            PTM[params.onSuccess](response_type);           
        }

How do make the "PTM" namespace dynamic when I pass it as a parameter?

share|improve this question
1  
Why are they forcing you to waste your time re-inventing the wheel? – SLaks Feb 7 '12 at 16:15
no need to argue on that part, it's the client's requirement. :) – ridvan Feb 7 '12 at 16:17
Can you fire the client Or convince them or their folly? – SLaks Feb 7 '12 at 16:21
2  
Download uncompressed jquery.js and replace all occurences of "jquery" into "greenCheese". Your framework is ready. – thg435 Feb 7 '12 at 16:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.