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

จะส่งข้อมูลพื้นที่ข้อความไปยังสคริปต์ Python CGI ได้อย่างไร


ส่งข้อมูลพื้นที่ข้อความไปยังโปรแกรม CGI

องค์ประกอบ TEXTAREA จะใช้เมื่อต้องส่งข้อความหลายบรรทัดไปยังโปรแกรม CGI

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

<form action = "/cgi-bin/textarea.py" method = "post" target = "_blank">
<textarea name = "textcontent" cols = "40" rows = "4">
Type your text here...
</textarea>
<input type = "submit" value = "Submit" />
</form>

ผลลัพธ์ของรหัสนี้คือรูปแบบต่อไปนี้ -

Type your text here...
 Submit

ด้านล่างนี้คือสคริปต์ textarea.cgi สำหรับจัดการอินพุตที่กำหนดโดยเว็บเบราว์เซอร์ -

#!/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('textcontent'):
   text_content = form.getvalue('textcontent')
else:
   text_content = "Not entered"
print "Content-type:text/html\r\n\r\n"
print "<html>"
print "<head>";
print "<title>Text Area - Fifth CGI Program</title>"
print "</head>"
print "<body>"
print "<h2> Entered Text Content is %s</h2>" % text_content
print "</body>"