我不想使用html文件,但是只有django才需要发出POST请求。
html
就像urllib2发送get请求一样。
urllib2
get
结合使用urllib2和urllib中的方法即可解决问题。这是我使用这两种方法发布数据的方式:
post_data = [('name','Gladys'),] # a sequence of two element tuples result = urllib2.urlopen('http://example.com', urllib.urlencode(post_data)) content = result.read()
urlopen()是用于打开URL的方法。 urlencode()将参数转换为百分比编码的字符串。
urlopen()
urlencode()