Guest User

Untitled

a guest
Jan 11th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. const httpOptions = { headers: new HttpHeaders({'Content-Type': 'application/json'}) };
  2. const bookName = { bookName: this.bookTitle };
  3.  
  4. // function to buy book
  5. buyBook(bookName) {
  6. return this.http.post<responseFromApi>('/paypal/pay', bookName, httpOptions);
  7. }
Add Comment
Please, Sign In to add comment