Guest User

Untitled

a guest
Jan 31st, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // COMPONENT
  2. ds - to dataservice
  3.  
  4. getFilesList(path){
  5.     this.ds.getFilesList(path);
  6.   }
  7.  
  8. //SERVICE
  9. getFilesList(path){
  10.   const obj = {
  11.     path: path
  12.   };
  13.  
  14.  
  15.   this.http.post(this.uri, obj)
  16.     .subscribe(
  17.      res => {return res;}
  18.     );
Add Comment
Please, Sign In to add comment