I'm trying to do this, which returns 'undefined':
$.ajax({
url : 'curriculum/read_types',
type : 'GET',
dataType : 'JSON',
success : function(data) {
return data;
}
})
But if I do this:
$.ajax({
url : 'curriculum/read_types',
type : 'GET',
dataType : 'JSON',
success : function(data) {
console.log(data);
}
})
it writes an entire JSON object on the console, so I know there exists data.
How I can return this data?
What I want to do is the next:
var curriculum = {
add : function() {
html = [];
html.push('<select name="type" required>');
html.push('<option value="0">Grupo general...</option>');
var types = curriculum.read_types();
$.each(types, function(k,v) {
html.push('<option value="'+v+'">'+v+'</option>')
})
html.push('</select>');
content.show('Añadir imagen a curriculum',html.join(''));
},
read_types : function() {
$.getJSON('curriculum/read_types', function(data) {
return data;
})
}
}
curriculun.add()
Finally it managed but with a asyn:false request:
var curriculum = {
add : function() {
html = [];
html.push('<select name="type" required>');
html.push('<option value="0">Grupo general...</option>');
var types = curriculum.read_types();
$.each(types, function(k,v) {
html.push('<option value="'+v+'">'+v+'</option>')
})
html.push('</select>')
content.show('Añadir imagen a curriculum',html.join(''));
},
read_types : function() {
var a;
$.ajax({
url : 'curriculum/read_types',
type : 'GET',
async : false,
contentType : 'JSON',
success : function(data) {
a = data;
}
})
return a;
}
}
successis a callback function, you can't return from it. You can work with JSON object inside thesuccess. – VisioN May 12 '12 at 23:07ajaxcall is made, then assign the data to that in the success handler if you need access to it. – x1a4 May 12 '12 at 23:07return data:? It should bereturn data;– stealthyninja May 12 '12 at 23:08