Guest User

Untitled

a guest
Jan 17th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. [HttpPost]
  2. public ActionResult Test(dataType data) //тип данных опредяйте сами в зависимости от задачи
  3. {
  4. ... //Какое-то действие с вашими данными
  5. return Result;
  6. }
  7.  
  8. function sendDataToController()
  9. {
  10. let data = localStorage['someData']; //данные, которые надо передать на сервер из localStorage
  11. let xhr = new XMLHttpRequest();
  12. let body = 'data=' + encodeURIComponent(data);
  13. xhr.open("POST", '/submit', true);
  14. xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  15. xhr.send(body);
  16. ... // какая-то обработка данных
  17. }
Add Comment
Please, Sign In to add comment