我使用lib @ line / bot.sdk,想从函数中获取displayName,但函数return和agent.add无法正常工作 请帮助我
client.getProfile(userid).then((profile) => {
name = profile.displayNameagent.add(name);
console.log(profile.displayName);
return name;
})
.catch((err) => {
// error handling
});
console.log可以获取displayName,但该函数返回“ undefined”,并且agent.add无法在行中工作