นี่คือคำแนะนำแบบทีละขั้นที่ 5 ในส่วนเสริมของ Classroom คำแนะนำแบบทีละขั้น
ในคำแนะนำแบบทีละขั้นนี้ คุณแก้ไขตัวอย่างจากขั้นตอนคำแนะนำแบบทีละขั้นก่อนหน้านี้ เพื่อสร้างไฟล์แนบประเภทกิจกรรม ต่อไปนี้คือไฟล์แนบที่ นักเรียนต้องส่งงาน เช่น เขียนคำตอบ แบบทดสอบ หรือ ที่นักเรียนสร้างขึ้น
ความแตกต่างระหว่างไฟล์แนบประเภทเนื้อหากับไฟล์แนบประเภทกิจกรรมเป็นสิ่งสำคัญ ไฟล์แนบของประเภทกิจกรรมจะแตกต่างจากประเภทเนื้อหา ดังนี้
- "ส่ง" จะปรากฏที่ด้านขวาบนของ iframe มุมมองของนักเรียน
- มีตัวระบุที่ไม่ซ้ำกันสำหรับงานของนักเรียน
- การ์ดไฟล์แนบของนักเรียนจะปรากฏใน UI การให้คะแนนของ Classroom
- นักเรียนสามารถตั้งค่าคะแนนสำหรับงานที่ได้รับมอบหมาย
ดูคำแนะนำแบบทีละขั้นถัดไปสำหรับการพูดคุยเกี่ยวกับการให้คะแนน ในช่วงนี้ คำแนะนำแบบทีละขั้นให้คุณทำตามขั้นตอนต่อไปนี้
- แก้ไขคำขอสร้างไฟล์แนบก่อนหน้านี้เป็น Classroom API เพื่อสร้างไฟล์แนบประเภทกิจกรรม
- ใช้พื้นที่เก็บข้อมูลถาวรสำหรับงานที่นักเรียนส่ง
- แก้ไขเส้นทางมุมมองของนักเรียนก่อนหน้านี้เพื่อยอมรับข้อมูลที่ป้อนของนักเรียน
- ระบุเส้นทางเพื่อแสดง iframe การตรวจงานของนักเรียน
เมื่อเสร็จสิ้น คุณสามารถสร้างไฟล์แนบประเภทกิจกรรมในงานได้ผ่าน UI ของ Google Classroom เมื่อเข้าสู่ระบบในฐานะครู นักเรียนในชั้นเรียนสามารถ ทำกิจกรรมใน iframe ให้เสร็จสิ้นด้วยและส่งคำตอบ ครูสามารถ ดูงานที่นักเรียนส่งใน UI การให้คะแนนของ Classroom
เพื่อให้เป็นไปตามวัตถุประสงค์ของตัวอย่างนี้ ให้ใช้เทมเพลตไฟล์แนบจาก คำแนะนำแบบทีละขั้นก่อนหน้าซึ่งแสดงภาพสถานที่สำคัญที่มีชื่อเสียงพร้อมคำอธิบาย ด้วยชื่อจุดสังเกต กิจกรรมประกอบด้วยการแจ้งให้นักเรียน ระบุชื่อของจุดสังเกต
แก้ไขคำขอสร้างไฟล์แนบ
ไปที่ส่วนของโค้ดซึ่งคุณสร้างประเภทเนื้อหา
ในคำแนะนำแบบทีละขั้นก่อนหน้านี้ รายการหลักในที่นี้คืออินสแตนซ์ของ
AddOnattachObject ที่ก่อนหน้านี้เราได้ระบุ teacherViewUri
ไว้
studentViewUri
และ title
สำหรับไฟล์แนบ
แม้ว่าไฟล์แนบของส่วนเสริมทั้งหมดจะต้องใช้ 3 ช่องนี้ แต่การแสดงหรือ
เมื่อไม่มี studentWorkReviewUri
จะเป็นตัวกำหนดว่าไฟล์แนบ
activity-type หรือ content-type คำขอ CREATE
ที่มีการป้อนข้อมูล
studentWorkReviewUri
จะกลายเป็นไฟล์แนบประเภทกิจกรรม ขณะที่ CREATE
คำขอที่ไม่มี studentWorkReviewUri
จะกลายเป็นไฟล์แนบประเภทเนื้อหา
การแก้ไขเดียวที่จะทำได้ตามคำขอนี้คือ การเติมข้อมูล
studentWorkReviewUri
เพิ่มเส้นทางที่มีชื่อที่เหมาะสมที่นี่ คุณ
นำไปใช้ในขั้นตอนถัดไป
Python
ในตัวอย่างที่เราให้ โค้ดนี้อยู่ในเมธอด create_attachments
ใน
webapp/attachment_routes.py
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
: ตัวระบุสำหรับงานที่นักเรียนส่ง มอบหมายโดย Classroom และแสดงผลในคำตอบ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
เมื่อสร้างไฟล์แนบ
การเปลี่ยนแปลงแรกที่ต้องทำคือการแยก submissionId
จาก
คำตอบ getAddOnContext
ข้อ
Python
ในตัวอย่างที่เราให้ไว้ ลิงก์นี้อยู่ในเมธอด load_activity_attachment
ใน
ไฟล์ webapp/attachment_routes.py
# 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
เมื่อสร้าง
ไฟล์แนบ เส้นทางนี้จะเปิดขึ้นเมื่อครูดูงานที่นักเรียนส่งใน
UI เครื่องมือให้คะแนนของ Classroom
คุณจะได้รับพารามิเตอร์การค้นหา submissionId
เมื่อ Classroom
เปิด iframe การตรวจงานของนักเรียน ใช้เพื่อเรียกดูงานของนักเรียนจาก
ฐานข้อมูลในเครื่องของคุณ:
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 Classroom ในฐานะหนึ่งใน ผู้ใช้ทดสอบ นักเรียนในชั้นเรียนเดียวกับผู้ใช้แบบทดสอบของครู
- ไปที่แท็บงานของชั้นเรียนและขยายงานทดสอบ
- คลิกการ์ดไฟล์แนบของส่วนเสริมเพื่อเปิดมุมมองของนักเรียน แล้วส่ง คำตอบสำหรับกิจกรรมนั้นๆ
- ปิด iframe หลังจากทำกิจกรรมเสร็จแล้ว หรือคุณสามารถคลิกปุ่ม เลี้ยว ปุ่มเข้า
คุณไม่น่าจะเห็นการเปลี่ยนแปลงใน Classroom หลังจากทำงานเสร็จ กิจกรรมนั้น ตอนนี้ให้ทดสอบ iframe การตรวจงานของนักเรียนดังนี้
- ลงชื่อเข้าใช้ Classroom ในฐานะผู้ใช้ทดสอบของครู
- ค้นหาคอลัมน์สำหรับงานทดสอบในแท็บคะแนน คลิก ชื่อของงานทดสอบ
- ค้นหาการ์ดสำหรับผู้ใช้ที่เป็นนักเรียนทดสอบ คลิกไฟล์แนบในการ์ด
ตรวจสอบว่าการส่งที่ถูกต้องปรากฏขึ้นสำหรับนักเรียน
ยินดีด้วย คุณพร้อมจะดำเนินการขั้นตอนถัดไปแล้ว: การซิงค์ไฟล์แนบ เกรด