用于int的Flask url模式匹配不匹配负整数

时间:2017-04-24 18:01:50

标签: python flask

假设我有一个端点,我使用整数参数来确定操作的方向:

@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,模式匹配是否仅适用于正整数?

0 个答案:

没有答案