Toggle navigation
Toggle navigation
This project
Loading...
Sign in
liuming
/
developer-docs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
lhach92
2015-10-19 11:36:53 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
788ba5fca7466a007fb6e728639d528d815dc527
788ba5fc
1 parent
e7fe1fc9
Created 教师版封面学情展现 (markdown)
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
97 additions
and
0 deletions
教师版封面学情展现.md
教师版封面学情展现.md
0 → 100644
View file @
788ba5f
## 教师在课程封面展示学生成绩
获取各项练习成绩
`/report/group/{class_id}/lesson/{lesson_id} `
返回值
{
"词句练习" :
[
{
"user_id" : 9200,
"user_name" : "吕寰",
"score" : 100
} ],
"词义练习" :
[
{
"user_id" : 9200,
"user_name" : "吕寰",
"score" : 100
} ],
"拼写练习" :
[
{
"user_id" : 9200,
"user_name" : "吕寰",
"score" : 96
} ],
"听力测验" :
[
{
"user_id" : 7827,
"user_name" : "지연",
"score" : 67.0
} ],
"type" :
[
"词句练习", "词义练习", "拼写练习", "听力测验"
]
}
_type字段返回该课学生完成的全部练习类型,其他字段返回各个练习学生的完成情况。_
_该接口在课程封面页每隔十秒刷新一次来更新成绩展示。_
### 获取本课讲授词句统计和口语练习成绩
`/event/statistic/lesson?access_token={access_token}&groupId={class_id}&lesson={lesson_id}`
{
"record" :
[
{
"score" : 0,
"standard" : 0,
"user_id" : 7827,
"user_name" : "지연"
}, {
"score" : 736,
"standard" : 85,
"user_id" : 9200,
"user_name" : "吕寰"
} ],
"title" : {
"record" : "口语练习",
"learning" : "本课讲授词句"
}
}
_title返回口语练习和本课讲授词句在展示时显示的名称,record返回口语练习的情况,learning返回本课讲授词句_
_该接口每次在课程成绩展示页只请求一次。_
各项练习成绩在展示时的颜色从静态资源中获取:config/statistics.json
{
"练习": {
"color": "#60B336",
"template": "Study"
},
"词句练习": {
"color": "#60B336",
"template": "Study"
},
"词义练习": {
"color": "#60B336",
"template": "Study"
},
"拼写练习": {
"color": "#60B336",
"template": "Study"
},
"听力测验": {
"color": "#F16CB6",
"template": "Listen"
},
"考题实战": {
"color": "#41BCEB",
"template": "Exam"
},
"口语练习": {
"color": "#FF9E41",
"template": "Speech"
},
"本课讲授词句": {
"color": "#919DFF",
"template": "WordsRecord"
}
}
_根据各项练习名来获取相应颜色,template字段在改资源更改时不会发生改变。_
\ No newline at end of file
...
...
Please
register
or
login
to post a comment