本文介绍了为什么我不能使用urlencode编码json格式的数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在python 2.7中遇到有关urlencode的问题:
I have a problem about urlencode in python 2.7:
>>> import urllib
>>> import json
>>> urllib.urlencode(json.dumps({'title':"hello world!",'anonymous':False,'needautocategory':True}))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/urllib.py", line 1280, in urlencode
raise TypeError
TypeError: not a valid non-string sequence or mapping object
推荐答案
因为urllib.urlencode
将对象或两个元素的元组序列映射到百分比编码的"字符串..." .您的字符串都不是这些.
Because urllib.urlencode
"converts a mapping object or a sequence of two-element tuples to a "percent-encoded" string...". Your string is neither of these.
我认为您需要urllib.quote
或urllib.quote_plus
.
这篇关于为什么我不能使用urlencode编码json格式的数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!