I have this
var myapp;
function Menu($scope){
$.ajax({
url: "/user.php",
type: "POST",
success: function(data){
}
});
}
how do I use the data out of the function scope.
thanks
|
I have this
how do I use the data out of the function scope. thanks |
|||||
|
|
You're having trouble because the ajax operation is asynchronous. This means that, after You say in the comments that a framework calls your
In case you can modify how
|
|||
|
|
|
You can create a variable at the scope you need, and save the data to that variable. Or you can call a function and pass that data to it. For example:
|
|||
|
Create a global variable, assign data to it, and then use the global variable. e.g.
|
|||
|
|