我正在关注此Flaskappbuilder example。但是,当我想路由到其他网址时,例如对于method3
中的views.py
,如果我想路由到/method3/jonh
而不是myview/method3/jonh
,它将返回错误:the requested url was not found on the server. if you entered the url manually please check your spelling and try again.
我不明白为什么需要myview
吗?以及如何路由到与示例不同的网址?
在views.py
中,我将appbuilder.add_link("Method3", href='/myview/method3/jonh', category='My View')
更改为appbuilder.add_link("Method3", href='/method3/jonh', category='My View')
。并且,如果将其更改为其他任何字符,例如appbuilder.add_link("Method3", href='/myview1/method3/jonh'
,也会发生相同的错误。