当前位置: 高中信息技术 / 单选题
  • 1. (2021高二上·瑞安月考) 小美制作了一个简单的Flask程序,其中编写路由和视图的函数如下所示:

    @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,则网页显示的内容是(    )

    A . Hello,admin! B . Hello,Boss! C . Hello,Admin! D . Hello,boss!

微信扫码预览、分享更方便