-
30 Nov 2011 7:29 PM #1
Determining arguments in callback functions
Determining arguments in callback functions
Hey guys, right now I'm trying to get response from the server via a callback function, like this:
QueryDatabase represents my PHP file, and the validateLogin is a function that takes email and password as arguments. (the 3rd argument, function() is actually the callback argument)Code:QueryDatabase.validateLogin(email, password, function(response, e){ console.log(response); });
My question is, how do you determine what kind of arguments go into the callback function() ? In the extjs API there is an example that goes like this:
As you can see the arguments are now (records, operation, success)... but how do u know u have to use those?Code:store.load ({ scope : this, callback: function(records, operation, success) { //the operation object contains all of the details of the load operation console.log(records); } });
-
1 Dec 2011 6:05 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
If you don't know what arguments there are in a function, look at arguments:
That keyword doesn't care if it is listed as an argument in the function.Code:console.log(arguments);
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
4 Dec 2011 10:43 PM #3


Reply With Quote