我尝试测试我的服务器并使用django与android客户端连接。
我的代码:
from django.http import HttpResponse
def first_page(request):
if request.method == 'POST':
return HttpResponse('you are post method')
elif request.method == 'GET':
return HttpResponse('you are get method')
android客户端帖子我的服务器总是 500响应。如果更改方法,并使用if request.method == 'GET:'
这项工作。
我很困惑发生了什么,POST
方法无法使用 HttpResponse ?
将我的客户端错误信息更新为:
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getHeaderField(Unknown Source)
at java.net.URLConnection.getContentType(Unknown Source)
任何人都可以帮助我们吗?