深度报道消息源可信度的评估方法中,最关键的是要看记者同消息源的关系如何。
查看答案
对深度报道来说,单一的消息源往往是危险的,尤其是网络消息来源。
A. 对
B. 错
在本项目中,歌曲排行榜需要显示的是前()首歌曲的详细信息。
A. 10
B. 20
C. 30
D. 40
下面关于创建歌曲排行榜路由正确的是()
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()