Appery.io API Service JavaScript Object Execution, Methods and Data


/ Published in: JavaScript
Save to your folder(s)

Appery.io API Service JavaScript Object Execution, Methods and Data


Copy this code and paste it in your HTML
  1. service_name.execute({
  2.  
  3. success: function( PlainObject data, String textStatus, jqXHR jqXHR ) {
  4. //Success handler here
  5. },
  6.  
  7. error: function( jqXHR jqXHR, String textStatus, String errorThrown ) {
  8. //Error handler here
  9. },
  10.  
  11. complete: function( jqXHR jqXHR, String textStatus ) {
  12. //Complete handler here
  13. },
  14.  
  15. data: { object with request params },
  16. headers: { object with request header params }
  17. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.