我创建了一个检查参数并决定运行其余代码的函数。我看起来像:
def assert_something(a):
if a>3:
exit(0)
我尝试使用类似的东西:
class SomeHandler(webapp2.RequestHandler):
def get(self,parameter):
#check and if something wrong then quit
assert_something(parameter)
#otherwise do other things
问题是exit()
函数总是使用 500 代码创建响应。
如何修改此代码,以便我可以使用 200 代码退出此请求?