Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import Pagination from "@77io/pagination";
  2.  
  3. // Setup the basic options
  4. const baseUrl = wordpressRoot + "/wp-json/wp/v2/posts";
  5. const headers = {
  6. accept: "application/json"
  7. };
  8.  
  9. const sub = Pagination(baseUrl, headers)
  10. .subscribe((response: any) => {
  11. console.log("I got the first page!");
  12. console.log(response);
  13. sub.unsubscribe();
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement