如何使用Django发送POST请求?

我不想使用html文件,但是只有django才需要发出POST请求。

就像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()将参数转换为百分比编码的字符串。

以上是 如何使用Django发送POST请求? 的全部内容, 来源链接: utcz.com/qa/435454.html

回到顶部