Guest User

Untitled

a guest
Jul 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import { FileUploader } from 'ng2-file-upload';
  2.  
  3. const URL = 'http://localhost:4100';
  4.  
  5. export class CustomerComponent {
  6. private desc = "test";
  7.  
  8. public uploader: FileUploader = new FileUploader({
  9. url: URL,
  10. additionalParameter: {
  11. fileDesc: this.desc
  12. }
  13. });
  14.  
  15. }
Add Comment
Please, Sign In to add comment