Guest User

Untitled

a guest
Feb 18th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. export function downloadExport(apiUrl, idList) {
  2. const form = document.createElement("form");
  3. form.method = "POST";
  4. form.action = apiUrl;
  5. form.style.display = "none";
  6. form.target = "_blank";
  7.  
  8. for (let i = 0, len = idList.length; i < len; i++) {
  9. const ele = document.createElement("input");
  10. ele.name = "params[selected_ids][]";
  11. ele.value = idList[i];
  12. ele.type = "hidden";
  13. form.appendChild(ele);
  14. }
  15.  
  16. document.body.appendChild(form);
  17. form.submit();
  18. }
Add Comment
Please, Sign In to add comment