gpt4 book ai didi

Python "classobj"错误

转载 作者:太空宇宙 更新时间:2023-11-04 08:18:29 25 4
gpt4 key购买 nike

我有这段代码,但我无法运行它,因为我得到了这个错误:“TypeError:'classobj' 对象不可订阅”这是我的代码:

import cgi
import customerlib

form=cgi.FieldStorage

history = customerlib.find(form["f_name"].value,form["l_name"].value)


print "Content-type: text/html"
print
print """<html>
<head>
<title>Purchase history</title>
</head>
<body>
<h1>Purchase History</h1>"""

print "<p>you have a purchase history of:"
for i in history: "</p>"
print""" <body>
</html>"""

我在这个文件旁边有 customerlib 文件。知道如何解决吗?

最佳答案

form=cgi.FieldStorage

FieldStorage是一个类,不是一个对象。您需要实例化它以创建 FieldStorage对象:

form=cgi.FieldStorage()

它在 form["f_name"] 上出错因为 form 当前是 FieldStorage 类的别名, 不是 FieldStorage 类型的对象.通过实例化它,它正在做您认为应该做的事情。

查看 cgi module documentation有关如何使用 CGI 模块的更多详细信息。

关于Python "classobj"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10020350/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com