题目内容

下面关于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. 以上都对

下面关于歌手列表路由描述正确的是()

A. @.route('/artist_list')
B. @home('/artist_list')
C. @home.route('/artist_list')
D. @home.route(/artist_list)

答案查题题库