DRF - 如何验证url参数

时间:2017-08-24 06:42:20

标签: python django django-rest-framework

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

验证这些网址参数的最佳位置在哪里?用哪种方法?

0 个答案:

没有答案