我构建API。在我的网址中,我可以使用getHero(id: number): Promise<Hero | undefined> { // <----mention here for return type
return this.getHeroes()
.then(heroes => heroes.find(hero => hero.id === id));
}
参数,我可以在其中放置应与主对象一起包含在响应中的关系名称。我想验证include
中的名称只允许在序列化程序中指定的名称。
验证这些网址参数的最佳位置在哪里?用哪种方法?