- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在处理 python cgi 脚本,但无法解决此错误。不确定我做错了什么。如果有人可以帮助我修复错误,我将不胜感激。
错误在线
--> action=form["action"].value
这是完整的代码
#!/usr/bin/python
# Import the CGI, string, sys modules
import cgi, string, sys, os, re, random
import cgitb; cgitb.enable() # for troubleshooting
import sqlite3
import session
#Get Databasedir
MYLOGIN="msehgal"
DATABASE="/homes/"+MYLOGIN+"/PeteTwitt/Twitter.db"
IMAGEPATH="/homes/"+MYLOGIN+"/PeteTwitt/images"
##############################################################
# Define function to generate login HTML form.
def login_form():
html="""
<HTML>
<HEAD>
<TITLE>Info Form</TITLE>
</HEAD>
<BODY BGCOLOR = white>
<center><H2>PictureShare User Administration</H2></center>
<H3>Type User and Password:</H3>
<TABLE BORDER = 0>
<FORM METHOD=post ACTION="login.cgi">
<TR><TH>Username:</TH><TD><INPUT TYPE=text NAME="username"></TD><TR>
<TR><TH>Password:</TH><TD><INPUT TYPE=password NAME="password"></TD></TR>
</TABLE>
<INPUT TYPE=hidden NAME="action" VALUE="login">
<INPUT TYPE=submit VALUE="Enter">
<INPUT TYPE=hidden NAME="action" VALUE="register">
<INPUT TYPE=submit VALUE="Register">
</FORM>
</BODY>
</HTML>
"""
print_html_content_type()
print(html)
###################################################################
##############################################################
# Define function to generate login HTML form.
def register_form():
html="""
<HTML>
<HEAD>
<TITLE>Register From</TITLE>
</HEAD>
<BODY BGCOLOR = white>
<center><H2>Register New User</H2></center>
<TABLE BORDER = 0>
<FORM METHOD=post ACTION="register.cgi">
<input type="hidden" name="user" value="{user}">
<input type="hidden" name="session" value="{session}">
<TR><TH>Username:</TH><TD><INPUT TYPE=text NAME="username"></TD><TR>
<TR><TH>Password:</TH><TD><INPUT TYPE=password NAME="password"></TD></TR>
</TABLE>
<INPUT TYPE=hidden NAME="action" VALUE=="login">
<INPUT TYPE=submit VALUE="Register">
</FORM>
</BODY>
</HTML>
"""
print_html_content_type()
print(html)
###################################################################
# Define function to test the password.
def check_password(user, passwd):
conn = sqlite3.connect(DATABASE)
c = conn.cursor()
t = (user,)
c.execute('SELECT * FROM users WHERE email=?', t)
row = stored_password=c.fetchone()
conn.close();
if row != None:
stored_password=row[1]
if (stored_password==passwd):
return "passed"
return "failed"
##########################################################
# Define function to test the password.
def registerUser(uname, passwrd):
conn = sqlite3.connect(DATABASE)
c = conn.cursor()
t = (uname,passwrd)
if (c.execute('INSERT INTO users VALUES',t)):
return "passed"
else:
return "failed"
conn.commit()
conn.close();
# Diplay the options of admin
def display_admin_options(user, session):
html="""
<H1> Picture Share Admin Options</H1>
<ul>
<li> <a href="login.cgi?action=new-album&user={user}&session={session}">Create new album</a>
<li> <a href="login.cgi?action=upload&user={user}&session={session}">Upload Picture</a>
<li> <a href="login.cgi?action=show_image&user={user}&session={session}">Show Image</a>
<li> Delete album
<li> Make album public
<li> Change pasword
</ul>
"""
#Also set a session number in a hidden field so the
#cgi can check that the user has been authenticated
print_html_content_type()
print(html.format(user=user,session=session))
#################################################################
def create_new_session(user):
return session.create_session(user)
##############################################################
def new_album(form):
#Check session
if session.check_session(form) != "passed":
return
html="""
<H1> New Album</H1>
"""
print_html_content_type()
print(html);
##############################################################
def show_image(form):
#Check session
if session.check_session(form) != "passed":
login_form()
return
# Your code should get the user album and picture and verify that the image belongs to this
# user and this album before loading it
#username=form["username"].value
# Read image
with open(IMAGEPATH+'/user1/test.jpg', 'rb') as content_file:
content = content_file.read()
# Send header and image content
hdr = "Content-Type: image/jpeg\nContent-Length: %d\n\n" % len(content)
print hdr+content
###############################################################################
def upload(form):
if session.check_session(form) != "passed":
login_form()
return
html="""
<HTML>
<FORM ACTION="login.cgi" METHOD="POST" enctype="multipart/form-data">
<input type="hidden" name="user" value="{user}">
<input type="hidden" name="session" value="{session}">
<input type="hidden" name="action" value="upload-pic-data">
<BR><I>Browse Picture:</I> <INPUT TYPE="FILE" NAME="file">
<br>
<input type="submit" value="Press"> to upload the picture!
</form>
</HTML>
"""
user=form["user"].value
s=form["session"].value
print_html_content_type()
print(html.format(user=user,session=s))
#######################################################
def upload_pic_data(form):
#Check session is correct
if (session.check_session(form) != "passed"):
login_form()
return
#Get file info
fileInfo = form['file']
#Get user
user=form["user"].value
s=form["session"].value
# Check if the file was uploaded
if fileInfo.filename:
# Remove directory path to extract name only
fileName = os.path.basename(fileInfo.filename)
open(IMAGEPATH+'/user1/test.jpg', 'wb').write(fileInfo.file.read())
image_url="login.cgi?action=show_image&user={user}&session={session}".format(user=user,session=s)
print_html_content_type()
print ('<H2>The picture ' + fileName + ' was uploaded successfully</H2>')
print('<image src="'+image_url+'">')
else:
message = 'No file was uploaded'
def print_html_content_type():
# Required header that tells the browser how to render the HTML.
print("Content-Type: text/html\n\n")
##############################################################
# Define main function.
def main():
form = cgi.FieldStorage()
if "action" in form:
action=form["action"].value
#print("action=",action)
if action == "login":
if "username" in form and "password" in form:
#Test password
username=form["username"].value
password=form["password"].value
if check_password(username, password)=="passed":
session=create_new_session(username)
display_admin_options(username, session)
else:
login_form()
print("<H3><font color=\"red\">Incorrect user/password</font></H3>")
elif (action == "new-album"):
new_album(form)
elif (action == "register"):
if "username" in form and "password" in form:
username = form["username"].value
password = form["password"].value
registerUser(username,password)
else:
print("<H3>FAILED</H3>")
elif (action == "upload"):
upload(form)
elif (action == "show_image"):
show_image(form)
elif action == "upload-pic-data":
upload_pic_data(form)
else:
login_form()
else:
login_form()
###############################################################
# Call main function.
main()
最佳答案
因为您的表单有两行用于操作
:
<INPUT TYPE=hidden NAME="action" VALUE="login">
<INPUT TYPE=hidden NAME="action" VALUE="register">
然后,form["action"]
是一个列表。
你可以用print(form["action"])
打印出来,我认为输出是['login', 'register']
cgi.html帮助:
If the submitted form data contains more than one field with the samename, the object retrieved by form[key] is not a FieldStorage orMiniFieldStorage instance but a list of such instances.
Similarly, in this situation, form.getvalue(key) would return a list of strings. Ifyou expect this possibility (when your HTML form contains multiplefields with the same name), use the getlist() method, which alwaysreturns a list of values (so that you do not need to special-case thesingle item case).
关于python - 类型 'exceptions.AttributeError' : 'list' object has no attribute 'value' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23351462/
我遇到了这两个错误,“AttributeError:在 DataLoader 工作进程 0 中捕获 AttributeError”,“AttributeError:模块“torchvision.tra
以下是我的代码。在最后一行中,我无法将Items[node.ind].v值设置为我想要的node.v,并收到错误。我不知道出了什么问题,但一定是基于语法,因为使用node.v+=1这样的语句也会显示相
我们准备了以下python脚本来显示word表格中的图片。 import matplotlib.pyplot as plt import pylab import win32com.client as
我需要一种方法来获取 TensorFlow 中任何类型层(即 Dense、Conv2D 等)的输出张量的形状。根据文档,有 output_shape 属性可以解决这个问题。但是,每次我访问它时,我都会
除了我之前的问题,关于如何在 Python 中打开 csv 文件,我仍然没有成功地做到这一点,并且从一个错误到另一个错误。 我的Python代码如下: @app.route("/admin", met
这是我在Google Colab中使用的代码。当我打这些电话的时候。我收到以下错误。这很奇怪。我以前从来没有见过这个问题。有没有人能帮我一下?我是不是做错了什么?
我想将Excel中的数据添加到词典中。但是,当我使用.append(TOTAL_SALES)时出现错误,当然,如果我使用+=TOTAL_SALES,则没有问题,只是我获得的是总和,而不是3个单独月份的
我想将Excel中的数据添加到词典中。但是,当我使用.append(TOTAL_SALES)时出现错误,当然,如果我使用+=TOTAL_SALES,则没有问题,只是我获得的是总和,而不是3个单独月份的
我正在尝试使用 gr_modtool.py 在 gnuradio 中创建一个新的 DSP 模块。 gnuradio 版本是 3.3.0。我在 include 文件夹中的 abc.h 文件中有以下代码
AttributeError:尝试在序列化器 UserKeywordSerializer 上获取字段 user 的值时出现 AttributeError。序列化程序字段可能命名不正确,并且与 Quer
我有以下使用Chatterbot第三方库的代码:。当我尝试使用代码时,从Visual Studio收到如下错误:。我安装了以下程序包:。我尝试了使用Python3.9和3.11以及Chatterbot
我有以下使用Chatterbot第三方库的代码:。当我尝试使用代码时,从Visual Studio收到如下错误:。我安装了以下程序包:。我尝试了使用Python3.9和3.11以及Chatterbot
我有以下使用Chatterbot第三方库的代码:。当我尝试使用代码时,从Visual Studio收到如下错误:。我安装了以下程序包:。我尝试了使用Python3.9和3.11以及Chatterbot
通常,当我尝试使用BeautifulSoup解析网页时,BeautifulSoup函数会得到NONE结果,否则就会引发AttributeError。。以下是一些独立的(即,由于数据是硬编码的,不需要访
通常,当我尝试使用BeautifulSoup解析网页时,BeautifulSoup函数会得到NONE结果,否则就会引发AttributeError。。以下是一些独立的(即,由于数据是硬编码的,不需要访
我试图配置预提交挂接,在运行预提交运行--所有文件时,我收到以下错误:。我已尝试升级pip以解决此问题pip安装--升级pip,但我收到另一个错误:。我尝试检查PIP和PIP3的版本,但现在我也收到了
我收到一个 AttributeError 我似乎无法解决。我正在处理两个类(class)。 第一个类就是这样。 class Partie: def __init__(self):
在 Django (1.4) 中迁移 South (0.7.5) 时,我遇到了这个错误。我最近将时区设置更改为 false,即 USE_TZ = False 以解决另一个问题。有任何想法吗?谢谢 ~/
当我尝试在两个序列化程序之间创建嵌套关系时出现 AttributeError。奇怪的是,我正在做与另一个 API 完全相同的事情,但这次我没有让它工作。这是代码: class UserSerializ
试图获得 manytomany django 中的关系,但我收到以下错误 - Got AttributeError when attempting to get a value for field n
我是一名优秀的程序员,十分优秀!