@app.route(‘/user/<name>’) #动态路由 def user(name): return render_template(‘user.html’,name=name) | 其中网页文件user.html的部分代码如下: <body> {%if name == ‘admin’%} <hl>Hello,Boss!</hl> {%else%} <hl>Hello,{{name|capitalize}}!</hl> {%endif%} </body> |
运行程序后,在浏览器输入如下网址://127.0.0.1:5000/user/admin,则网页显示的内容是( )