本文介绍了如何在Django Rest Framework SimpleRouter上使斜杠为可选的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 文档说,您可以设置 trailing_slash = False ,但是如何允许两个端点在有斜线或无斜线的情况下工作?The docs say you can set trailing_slash=False but how can you allow both endpoints to work, with or without a trailing slash?推荐答案您可以覆盖 __ init __ 方法:You can override the __init__ method of the SimpleRouter class:from rest_framework.routers import SimpleRouterclass OptionalSlashRouter(SimpleRouter): def __init__(self): super().__init__() self.trailing_slash = '/?' ?字符将使斜杠对于所有可用路线都是可选的。The ? character will make the slash optional for all available routes. 这篇关于如何在Django Rest Framework SimpleRouter上使斜杠为可选的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
06-11 14:36