编码utf-8时,Python urlencode正在丢失数据

时间:2017-09-05 04:20:44

标签: php python encoding utf-8 urlencode

我有一个简单的urlencode将数据从我的python推送到我的php文件。

    # -*- coding: utf-8 -*-
    import urllib,urllib2
    array={'test':'Ch\xe2teau'}
    test=urllib2.urlopen(urllib2.Request('http://localhost/link/php.php',urllib.urlencode(array,True))).read()
    print test

数组是utf-8编码的。我试图传递给我的php文件以供使用,但它变成了?

这是我的结果:

enter image description here

如何防止此数据丢失?

0 个答案:

没有答案