1

我的代码如下:

search_request = urllib2.Request(url,data=tmp_file_name,headers={'X-Requested-With':'WoMenShi888XMLHttpRequestWin'})
#print search_request.get_method()
try:
    search_response = urllib2.urlopen(search_request)
except urllib2.HTTPError:
    pass
html_data = search_response.read()
print html_data

但是当我运行它时,我得到了这个:

Traceback (most recent call last):
  File "G:\MyProjects\python\lfi_tmp.py", line 78, in <module>
    print hello_lfi()
  File "G:\MyProjects\python\lfi_tmp.py", line 70, in hello_lfi
    html_data = search_response.read()
UnboundLocalError: local variable 'search_response' referenced before assignment

我尝试添加

global search_response

再次运行,我得到一个这样的异常

Traceback (most recent call last):
  File "G:\MyProjects\python\lfi_tmp.py", line 78, in <modul
    print hello_lfi()
  File "G:\MyProjects\python\lfi_tmp.py", line 70, in hello_
    html_data = search_response.read()
NameError: global name 'search_response' is not defined
4

2 回答 2

2

如果你得到HTTPError你没有search_response变量。所以这一行:

html_data = search_response.read()

引发您的错误,因为您正在尝试访问search_response未声明的内容。我认为您应该html_data = search_response.read()像这样替换该行,例如:

search_request = urllib2.Request(url,data=tmp_file_name,headers={'X-Requested-With':'WoMenShi888XMLHttpRequestWin'})
    #print search_request.get_method()
try:
    search_response = urllib2.urlopen(search_request)
    html_data = search_response.read()  #New here
except urllib2.HTTPError:
    html_data = "error" #And here

print html_data
于 2012-12-24T12:46:53.510 回答
0

代码将转到exception下面的代码中,其中search_response未设置变量。

try:
    search_response = urllib2.urlopen(search_request)
except urllib2.HTTPError:
    pass
html_data = search_response.read()
print html_data

而不是使用pass,引发错误或将search_response变量设置为None.

也许是这样的:

try:
    search_response = urllib2.urlopen(search_request)
except urllib2.HTTPError:
    raise SomeError
html_data = search_response.read()
print html_data

或者

try:
    search_response = urllib2.urlopen(search_request)
except urllib2.HTTPError:
    search_response = None
if html_data:
    html_data = search_response.read()
    print html_data
else:
    # Do something else
于 2012-12-24T12:54:41.743 回答