Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function getWebServiceInfo()
  2. {
  3. ws.webserviceMethod({},{
  4. success : function(data){
  5. // we have the info, lets display them in the console
  6. _.each(data, function(item){
  7. Ti.API.info(JSON.stringify(item));
  8. });
  9. }
  10. });
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement