API请求在控制台中返回数据,但无法在浏览器中呈现

时间:2019-05-06 22:14:47

标签: node.js express riot-games-api

我正在尝试使用Kayn JS包装器从Riot API获取召唤者(如用户)信息。


浏览器中的结果(peynircikadir是召唤者名称):


控制台中的预期数据:


控制台中的某些错误:

enter image description here


和我的代码:

app.listen(PORT, () => console.log(`Server is ready @ ${PORT}`));

app.set("view engine", "pug");

app.get("/:summonerName", (req, res) => {
  kayn.Summoner.by
    .name(`${req.params.summonerName}`)
    .region(REGIONS.TURKEY)
    .then(summoner => {
      console.log(summoner);

      res.render("index", {
        title: req.params.summonerName,
        message: `Summoner: ${summoner}`
      });
    });
});

0 个答案:

没有答案