我正在尝试使用Kayn JS包装器从Riot API获取召唤者(如用户)信息。
浏览器中的结果(peynircikadir是召唤者名称):
控制台中的某些错误:
和我的代码:
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}`
});
});
});