我在这里有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);
});
我希望将“一”的价值传递给趋势。