如何将值从fetch api传递给变量

时间:2017-09-06 16:07:03

标签: javascript arrays json api fetch

我在这里有js代码的一部分(工作)

SELECT

但是,我希望从fetch API中填充趋势。 我的fetch API是

var trends = ['PS4','Microsoft','Xbox One','WWE'];
function randomTrend() {
  return trends[Math.floor(trends.length * Math.random())];
}

Console.log正在返回

    fetch('http://echo.jsontest.com/key/value/one/two').then(function(response) { 
  return response.json();
}).then(function(j) {
  console.log(j); 
});

我希望将“一”的价值传递给趋势。

0 个答案:

没有答案