如何使用node.js将来自RapidApi的unison Json数据发布到html页面

时间:2019-06-22 19:56:05

标签: javascript node.js json reactjs unirest

我是Node的新手,这是我在堆栈上遇到的第一个问题,因此,我将尽快进行介绍。基本上,我想使用node.js从RapidAPI网站发布JSON数据,并将数据放到HTML页面上。从网站获取数据的方法是使用unirest。我做了所有的基础知识,例如npm install unirest,设置我的节点服务器,获取我的密钥,甚至使用body-parser提取数据。但是可悲的是我没有运气

下面的代码(不是outpus)是从RapidAPI网站上记录的,我将它们放在脚本文件中,但是问题是它仅将数据输出到控制台。我想将这些数据(例如名称,id,团队等)作为目标,并使用node.js将其放在html页面上

unirest.get("https://free-nba.p.rapidapi.com/players/237")
.header("X-RapidAPI-Host", "free-nba.p.rapidapi.com")
.header("X-RapidAPI-Key", "6a0f41b316msh70cba768ca50b57p1705ccjsn0af558639108")
.end(function (result) {
  console.log(result.status, result.headers, result.body);
});


//outputs in the console

{8 items
"id":237
"first_name":"LeBron"
"height_feet":6
"height_inches":8
"last_name":"James"
"position":"F"
"team":{7 items
"id":14
"abbreviation":"LAL"
"city":"Los Angeles"
"conference":"West"
"division":"Pacific"
"full_name":"Los Angeles Lakers"
"name":"Lakers"
}
"weight_pounds":250
}

//expected output

//LeBron James Lakers (in an h1 or something)

我又想将其中一些数据发布到我的HTML页面上。任何帮助将不胜感激。

0 个答案:

没有答案