这是 Google 课堂插件演练系列中的第五个演练。
在此演示中,您将修改上一个演示步骤中的示例,以生成activity 类型附件。这些附件需要学生提交,例如书面回答、测验或其他学生生成的内容。
区分内容类型附件和活动类型附件非常重要。活动类型附件与内容类型附件的不同之处如下:
- “提交”按钮会显示在学生视图 iframe 的右上角。
- 它们为学生作业提供唯一标识符。
- 其附件卡片会显示在 Google 课堂评分工具界面中。
- 他们可以为自己所属的作业设置成绩。
如需了解有关评分的讨论,请参阅下一个演练。在本演练过程中,您将完成以下操作:
- 修改之前针对 Classroom API 的附件创建请求,以创建活动类型的附件。
- 为学生提交的内容实现永久性存储。
- 修改之前的学生视图路线以接受学生输入。
- 提供用于提供学生作业审核 iframe 的路由。
完成后,当您以教师身份登录时,可以通过 Google 课堂界面在作业中创建活动类型的附件。班级中的学生也可以在 iframe 中完成活动并提交回答。教师可以在 Google 课堂评分界面中查看学生的提交内容。
在此示例中,我们将沿用上一个演示中的附件模板,该模板显示了一张著名地标的图片以及包含地标名称的图片说明。此活动包括提示学生提供地标的名称。
修改附件创建请求
前往您在上一个演示中创建内容类型附件的代码部分。此处的键项是 AddOnAttachment 对象的一个实例,我们在其中预先为附件指定了 teacherViewUri
、studentViewUri
和 title
。
虽然所有插件附件都需要这三个字段,但是否存在 studentWorkReviewUri
决定了附件是活动类型还是内容类型。包含已填充的 studentWorkReviewUri
的 CREATE
请求会成为 activity 类型附件,而没有 studentWorkReviewUri
的 CREATE
请求会成为内容类型附件。
对此请求进行的唯一修改是填充 studentWorkReviewUri
字段。在此处添加一个名称适当的路由;您将在后续步骤中实现该路由。
Python
在提供的示例中,此操作位于 webapp/attachment_routes.py
文件中的 create_attachments
方法中。
attachment = {
# Specifies the route for a teacher user.
"teacherViewUri": {
"uri":
flask.url_for(
"load_activity_attachment",
_scheme='https',
_external=True),
},
# Specifies the route for a student user.
"studentViewUri": {
"uri":
flask.url_for(
"load_activity_attachment",
_scheme='https',
_external=True)
},
# Specifies the route for a teacher user when the attachment is
# loaded in the Classroom grading view.
# The presence of this field marks this as an activity-type attachment.
"studentWorkReviewUri": {
"uri":
flask.url_for(
"view_submission", _scheme='https', _external=True)
},
# The title of the attachment.
"title": f"Attachment {attachment_count}",
}
为内容类型附件添加了持久性存储
记录学生对我们活动的回答。教师在“学生作业审核”iframe 中查看提交的作业时,可以稍后查找该信息。
为 Submission
设置数据库架构。我们提供的示例要求学生输入图片中显示的地标的名称。因此,Submission
包含以下属性:
attachment_id
:附件的唯一标识符。由 Classroom 分配,并在创建附件时在响应中返回。submission_id
:学生提交内容的标识符。由 Google 课堂分配,并在学生视图的getAddOnContext
响应中返回。
student_response
:学生提供的答案。
Python
扩展上一步中的 SQLite 和 flask_sqlalchemy
实现。
前往您定义了之前表格的文件(如果您遵循我们提供的示例,则为 models.py
)。在文件底部添加以下内容。
# Database model to represent a student submission.
class Submission(db.Model):
# The attachmentId is the unique identifier for the attachment.
submission_id = db.Column(db.String(120), primary_key=True)
# The unique identifier for the student's submission.
attachment_id = db.Column(db.String(120), primary_key=True)
# The student's response to the question prompt.
student_response = db.Column(db.String(120))
将新的 Submission
类导入到包含附件处理路由的服务器文件中。
修改学生视图路线
接下来,修改之前的学生视图路由,以显示一个小表单并接受学生的输入。您可以重复使用之前的大部分代码。
找到为学生视图提供路由的服务器代码。这是创建附件时在 studentViewUri
字段中指定的路由。首先要进行的更改是从 getAddOnContext
响应中提取 submissionId
。
Python
在提供的示例中,此操作位于 webapp/attachment_routes.py
文件中的 load_activity_attachment
方法中。
# Issue a request to the courseWork.getAddOnContext endpoint
addon_context_response = classroom_service.courses().courseWork(
).getAddOnContext(
courseId=flask.session["courseId"],
itemId=flask.session["itemId"]).execute()
# One of studentContext or teacherContext will be populated.
user_context = "student" if addon_context_response.get(
"studentContext") else "teacher"
# If the user is a student...
if user_context == "student":
# Extract the submissionId from the studentContext object.
# This value is provided by Google Classroom.
flask.session["submissionId"] = addon_context_response.get(
"studentContext").get("submissionId")
您可能还需要发出请求来获取学生提交状态。响应包含一个 SubmissionState
值,用于指示学生是否已打开附件或提交附件等状态。如果您想禁止对已提交的作业进行修改,或者想让教师了解学生的进度,此功能可能会很有用:
Python
在提供的示例中,这是对上述 load_activity_attachment
方法的延续。
# Issue a request to get the status of the student submission.
submission_response = classroom_service.courses().courseWork(
).addOnAttachments().studentSubmissions().get(
courseId=flask.session["courseId"],
itemId=flask.session["itemId"],
attachmentId=flask.session["attachmentId"],
submissionId=flask.session["submissionId"]).execute()
最后,从数据库中提取附件信息并提供输入表单。我们提供的示例中的表单包含一个字符串输入字段和一个提交按钮。显示地标图片,并提示学生输入地标名称。 在他们提供回答后,将其记录在我们的数据库中。
Python
在提供的示例中,这是对上述 load_activity_attachment
方法的延续。
# Look up the attachment in the database.
attachment = Attachment.query.get(flask.session["attachmentId"])
message_str = f"I see that you're a {user_context}! "
message_str += (
f"I've loaded the attachment with ID {attachment.attachment_id}. "
if user_context == "teacher" else
"Please complete the activity below.")
form = activity_form_builder()
if form.validate_on_submit():
# Record the student's response in our database.
# Check if the student has already submitted a response.
# If so, update the response stored in the database.
student_submission = Submission.query.get(flask.session["submissionId"])
if student_submission is not None:
student_submission.student_response = form.student_response.data
else:
# Store the student's response by the submission ID.
new_submission = Submission(
submission_id=flask.session["submissionId"],
attachment_id=flask.session["attachmentId"],
student_response=form.student_response.data)
db.session.add(new_submission)
db.session.commit()
return flask.render_template(
"acknowledge-submission.html",
message="Your response has been recorded. You can close the " \
"iframe now.",
instructions="Please Turn In your assignment if you have " \
"completed all tasks."
)
# Show the activity.
return flask.render_template(
"show-activity-attachment.html",
message=message_str,
image_filename=attachment.image_filename,
image_caption=attachment.image_caption,
user_context=user_context,
form=form,
responses=response_strings)
为了区分用户,请考虑停用提交功能,改为在教师视图中显示正确答案。
为学生作业审核 iframe 添加了路由
最后,添加一个用于提供学生作业检查 iframe 的路由。此路由的名称应与创建附件时为 studentWorkReviewUri
提供的名称一致。当教师在“Google 课堂”评分工具界面中查看学生提交的作业时,系统会打开此路线。
当 Google 课堂打开“学生作业审核”iframe 时,您会收到 submissionId
查询参数。使用它从本地数据库检索学生作业:
Python
在提供的示例中,此文件为 webapp/attachment_routes.py
文件。
@app.route("/view-submission")
def view_submission():
"""
Render a student submission using the show-student-submission.html template.
"""
# Save the query parameters passed to the iframe in the session, just as we did
# in previous routes. Abbreviated here for readability.
add_iframe_query_parameters_to_session(flask.request.args)
# For the sake of brevity in this example, we'll skip the conditional logic
# to see if we need to authorize the user as we have done in previous steps.
# We can assume that the user that reaches this route is a teacher that has
# already authorized and created an attachment using the add-on.
# In production, we recommend fully validating the user's authorization at
# this stage as well.
# Look up the student's submission in our database.
student_submission = Submission.query.get(flask.session["submissionId"])
# Look up the attachment in the database.
attachment = Attachment.query.get(student_submission.attachment_id)
# Render the student's response alongside the correct answer.
return flask.render_template(
"show-student-submission.html",
message=f"Loaded submission {student_submission.submission_id} for "\
f"attachment {attachment.attachment_id}.",
student_response=student_submission.student_response,
correct_answer=attachment.image_caption)
测试插件
重复执行上一个演练中的“测试插件”步骤。您应添加学生可以打开的附件。
完成以下步骤以测试活动附件:
- 以某个Google 课堂学生测试用户的身份登录,该用户与教师测试用户在同一班级中。
- 前往课业标签页,然后展开测试作业。
- 点击插件附件卡片,打开学生视图,然后提交活动回答。
- 在完成活动后关闭 iframe。(可选)点击提交按钮。
完成此活动后,您应该不会看到 Google 课堂发生任何变化。现在,测试“学生作业查看”iframe:
- 以教师测试用户的身份登录 Google 课堂。
- 在成绩标签页中,找到相应测试作业的列。点击测试作业的名称。
- 找到测试学生用户的卡片。点击卡片上的附件。
确认系统会为学生显示正确的提交内容。
恭喜!您可以继续执行下一步:同步附件成绩。