码迷,mamicode.com
首页 > 移动开发 > 详细

android 开发问题集锦

时间:2015-04-24 01:10:05      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:django   network   python   android   app   网络   

android客户端 + python服务端(django框架)---问题集锦


1:很奇怪的事,Get和Post提交方式

各种方法试尽了,始终不成功,结果是URL问题,

http://xxxx/xxxxx实在没有办法只好直接上html:

<html>
<head>test</head>
<body>
<form action="http://xxxx/xxxxx" method="post">
<input type=text name=‘username‘ />
<input type="submit" value=‘submit‘/>
</form>
</body>
</html>

终于露出了能看到的原因:

You called this URL via POST, but the URL doesn‘t end in a slash and you have APPEND_SLASH set. Django can‘t redirect to the slash URL while maintaining POST data. Change your form to point to xxxx/xxxx/ (note the trailing slash), or set APPEND_SLASH=False in your Django settings.

就是最后"/"的原因。


总结:在模拟器中不找到原因时要尝试换一种简单明了的方式来模拟重现问题场景。


本文出自 “狼之魂” 博客,请务必保留此出处http://itwolf.blog.51cto.com/3286625/1637766

android 开发问题集锦

标签:django   network   python   android   app   网络   

原文地址:http://itwolf.blog.51cto.com/3286625/1637766

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!