Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

การส่งผ่านข้อมูลกล่องดรอปดาวน์ไปยังโปรแกรม CGI ใน Python


กล่องแบบเลื่อนลงจะใช้เมื่อเรามีตัวเลือกมากมาย แต่จะเลือกเพียงหนึ่งหรือสองรายการเท่านั้น

ตัวอย่าง

นี่คือตัวอย่างโค้ด HTML สำหรับแบบฟอร์มที่มีกล่องดรอปดาวน์หนึ่งกล่อง -

<form action = "/cgi-bin/dropdown.py" method = "post" target = "_blank">
<select name = "dropdown">
<option value = "Maths" selected>Maths</option>
<option value = "Physics">Physics</option>
</select>
<input type = "submit" value = "Submit"/>
</form>

ผลลัพธ์

ผลลัพธ์ของรหัสนี้อยู่ในรูปแบบต่อไปนี้ −

การส่งผ่านข้อมูลกล่องดรอปดาวน์ไปยังโปรแกรม CGI ใน Python

ด้านล่างนี้คือสคริปต์ dropdown.py สำหรับจัดการอินพุตที่ได้รับจากเว็บเบราว์เซอร์

#!/usr/bin/python
# Import modules for CGI handling
import cgi, cgitb
# Create instance of FieldStorage
form = cgi.FieldStorage()
# Get data from fields
if form.getvalue('dropdown'):
   subject = form.getvalue('dropdown')
else:
   subject = "Not entered"
print "Content-type:text/html\r\n\r\n"
print "<html>"
print "<head>"
print "<title>Dropdown Box - Sixth CGI Program</title>"
print "</head>"
print "<body>"
print "<h2> Selected Subject is %s</h2>" % subject
print "</body>"
print "</html>"