Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

18 righe
571 B

4 anni fa
  1. function getCookie(name) {
  2. var value = "; " + document.cookie;
  3. var parts = value.split("; " + name + "=");
  4. if (parts.length == 2) return parts.pop().split(";").shift();
  5. }
  6. fetch('http://api.kfcoding.com/api/practice/trains/competition/begin', {
  7. headers: {
  8. 'Content-Type': 'application/json',
  9. Authorization: getCookie('token')
  10. },
  11. method: 'POST',
  12. body: JSON.stringify({repo: 'https://github.com/openx-lab/go-study-guide.git'})
  13. }).then(resp => resp.json())
  14. .then(data => {
  15. if (data.data)
  16. localStorage.setItem('comp_id', data.data.id)
  17. });