在我使用的钩子/路线中:
debug = request.GET.get('debug', False)
它适用于:
http://test.internal.local:8888/probe?debug=anything
但是我如何才能让它只使用标志而没有像?
那样的值http://test.internal.local:8888/probe?debug
谢谢
答案 0 :(得分:1)
您仍然可以获得debug
标记,但值为空字符串(''
)。
因此,检查一下这个标志是否简单:
debug = request.GET.get('debug') # if there is no debug flag you get `None`
if debug is not None:
# you have your debug flag