นี่คือคำแนะนำแบบทีละขั้นที่ 5 ในชุดคำแนะนำแบบทีละขั้นเกี่ยวกับส่วนเสริมของ Classroom
ในบทแนะนำนี้ คุณจะแก้ไขตัวอย่างจากขั้นตอนแนะนำก่อนหน้าเพื่อสร้างไฟล์แนบประเภทกิจกรรม ได้แก่ ไฟล์แนบที่ให้นักเรียนส่ง เช่น คำตอบที่เขียนขึ้น แบบทดสอบ หรืออาร์ติแฟกต์อื่นๆ ที่นักเรียนสร้างขึ้น
ความแตกต่างระหว่างไฟล์แนบประเภทเนื้อหากับประเภทกิจกรรมนั้นสำคัญ ไฟล์แนบประเภทกิจกรรมแตกต่างจากไฟล์แนบประเภทเนื้อหาดังนี้
- ปุ่ม "ส่ง" จะปรากฏที่ด้านขวาบนของ iframe มุมมองนักเรียน
- โดยจะเป็นตัวระบุที่ไม่ซ้ำกันสำหรับงานของนักเรียน
- การ์ดไฟล์แนบของนักเรียนจะปรากฏใน UI เครื่องมือตัดเกรดของ Classroom
- โดยสามารถกำหนดคะแนนสำหรับงานของตนได้
ดูคำแนะนำแบบทีละขั้นถัดไปสำหรับการพูดคุยเกี่ยวกับการให้คะแนน ในระหว่างการแนะนำนี้ คุณจะทำสิ่งต่อไปนี้
- แก้ไขคำขอสร้างไฟล์แนบก่อนหน้านี้ไปยัง Classroom API เพื่อสร้างไฟล์แนบประเภทกิจกรรม
- ใช้พื้นที่เก็บข้อมูลถาวรสำหรับข้อมูลที่ส่งของนักเรียน
- แก้ไขเส้นทางมุมมองนักเรียนก่อนหน้าเพื่อยอมรับอินพุตของนักเรียน
- ระบุเส้นทางเพื่อแสดง iframe ของการตรวจสอบงานของนักเรียน
เมื่อสร้างเสร็จแล้ว คุณสามารถสร้างไฟล์แนบประเภทกิจกรรมในงานผ่าน UI ของ Google Classroom เมื่อเข้าสู่ระบบในฐานะครู นักเรียนในชั้นเรียนยังทำกิจกรรมใน iframe และส่งคำตอบได้ด้วย ครูจะดูงานที่นักเรียนส่งได้ใน UI การให้คะแนนของ Classroom
เพื่อวัตถุประสงค์ของตัวอย่างนี้ ให้ใช้เทมเพลตไฟล์แนบจากคำแนะนำแบบทีละขั้นก่อนหน้า ซึ่งแสดงภาพของจุดสังเกตที่มีชื่อเสียงและคำบรรยายภาพพร้อมชื่อของจุดสังเกต กิจกรรมนี้ประกอบด้วยการแจ้งให้นักเรียนระบุชื่อสถานที่สำคัญ
แก้ไขคำขอสร้างไฟล์แนบ
ไปที่ส่วนโค้ดที่คุณสร้างไฟล์แนบประเภทเนื้อหาในการแนะนำแบบทีละขั้นตอนก่อนหน้านี้ รายการสำคัญที่นี่คืออินสแตนซ์ของออบเจ็กต์ AddOnAttachment ซึ่งก่อนหน้านี้เราได้ระบุ teacherViewUri
,
studentViewUri
และ title
สำหรับไฟล์แนบ
แม้ว่าไฟล์แนบของส่วนเสริมทั้งหมดจะต้องมี 3 ช่องนี้ แต่การมีหรือไม่มี studentWorkReviewUri
จะกำหนดว่าไฟล์แนบเป็นประเภทกิจกรรมหรือประเภทเนื้อหา คำขอ 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 ในฐานะผู้ใช้ทดสอบที่เป็นครู
- ค้นหาคอลัมน์สำหรับงานทดสอบในแท็บคะแนน คลิกชื่องานทดสอบของคุณ
- ค้นหาการ์ดของผู้ใช้นักเรียนทดสอบ คลิกไฟล์แนบบนการ์ด
ยืนยันว่าข้อมูลที่ส่งมาปรากฏขึ้นสำหรับนักเรียนอย่างถูกต้อง
ยินดีด้วย คุณก็พร้อมที่จะทำขั้นตอนถัดไปแล้ว นั่นคือการซิงค์คะแนนไฟล์แนบ