在本项目中,歌曲排行榜需要显示的是前()首歌曲的详细信息。
查看答案
下面关于创建歌曲排行榜路由正确的是()
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. 错