假设我有一个端点,我使用整数参数来确定操作的方向:
@app.route('/post/<int:direction>')
def move(direction):
if direction == 1:
print "Moving right"
elif direction == -1:
print "Moving left"
else:
print "Not moving anywhere"
但是以某种方式传入-1
时会导致error 404
,模式匹配是否仅适用于正整数?