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?