题目内容

下面关于创建歌曲排行榜路由正确的是()

A. @home.route(/toplist)
B. @home.route("/toplist")
C. @route("/toplist")
D. @home("/toplist")

查看答案
更多问题

下面关于toplist()方法描述正确的是()

A. def toplist():top_song = Song.query.order_by(Song.hits.desc()).limit(30).all()return render_template('home/toplist.html', top_song=top_song, hot_artist=hot_artist)
B. 渲染模板
C. def toplist():hot_artist = Artist.query.limit(6).all()return render_template('home/toplist.html', top_song=top_song, hot_artist=hot_artist)
D. 渲染模板
E. def toplist():top_song = Song.query.order_by(Song.hits.desc()).limit(30).all()hot_artist = Artist.query.limit(6).all()return render_template('home/toplist.html', top_song=top_song, hot_artist=hot_artist)
F. 渲染模板
G. def toplist():top_song = Song.query.order_by(Song.hits.desc()).limit(30).all()hot_artist = Artist.query.limit(6).all()

在进行歌曲排行时不需要显示歌曲的类别

A. 对
B. 错

在进行类别辨别时用的是if...elif语句

A. 对
B. 错

歌手根据区域划分为()类

A. 华语
B. 日语
C. 欧美
D. 以上都对

答案查题题库