“Получить запрос отреагировать” Ответ

Получить запрос отреагировать

// Simple GET request using fetch
fetch('https://api.npms.io/v2/search?q=react')
  .then(response => response.json())
  .then(data => this.setState({ data: data.feed }));
Sticky Pingu

Реагировать метод получить

/* React get method.  */

componentWillMount(){
    fetch('/getcurrencylist',
    {
        /*
        headers: {
          'Content-Type': 'application/json',
          'Accept':'application/json'
        },
        */
        method: "get",
        dataType: 'json',
    })
    .then((res) => res.json())
    .then((data) => {
      var currencyList = [];
      for(var i=0; i< data.length; i++){
        var currency = data[i];
        currencyList.push(currency);
      }
      console.log(currencyList);
      this.setState({currencyList})
      console.log(this.state.currencyList);
    })
    .catch(err => console.log(err))
  }
Enthusiastic Elephant

Ответы похожие на “Получить запрос отреагировать”

Вопросы похожие на “Получить запрос отреагировать”

Больше похожих ответов на “Получить запрос отреагировать” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования