题目内容

关于创建热门歌手路由正确的是()

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

查看答案
更多问题

下面关于contentFrame()方法实现热门歌手代码正确的是()

A. hot_song = Song.query.order_by(Song.hits.desc()).limit(10).all()return render_template('home/contentFrame.html',hot_artist=hot_artist,hot_song=hot_song)
B. return render_template('home/contentFrame.html',hot_artist=hot_artist,hot_song=hot_song)
C. 渲染模板
D. hot_artist = Artist.query.filter_by(isHot=1).limit(12).all()
E. 获取歌手数据
F. hot_artist = Artist.query.filter_by(isHot=1).limit(12).all()
G. 获取歌手数据 return render_template('home/contentFrame.html',hot_artist=hot_artist,hot_song=hot_song)
H. 渲染模板

热门歌手页面是在后台

A. 对
B. 错

在获取热门歌手数据的时候,一次只能显示12个歌手,不能进行更改。

A. 对
B. 错

下面关于普通用户的系统业务流程说法正确的是()

A. 普通用户不需要登录就可以收藏音乐
B. 普通用户不能播放音乐
C. 管理员登录后可以管理歌曲
D. 管理员不能管理歌手

答案查题题库