@mod.route('/participate/<survey_id>/', defaults = {'work_id':None}, methods = ['GET','POST'])
@mod.route('/pariicipate/<survey_id>/<work_id>', methods = ['GET', 'POST'])
def participate(survey_id, work_id):
/* do_something .. */
http://localhost:5000/participate/512dc365fe8974149091be1f
またはにアクセスできます。http://localhost:5000/participate/512dc365fe8974149091be1f/
デバッガを起動すると、 が表示されwork_id = None
ます。
試してみるとhttp://localhost:5000/participate/512dc365fe8974149091be1f/512dc365fe8974149091be1f
、http://localhost:5000/participate/512dc365fe8974149091be1f/512dc365fe8974149091be1f/
404 になります。
なぜこうなった?ルーティング ルールで間違ったことはありますか?