我有一个django应用程序,它暴露了一个API,其url conf看起来像这样,
url('^links/', linkhandler),
链接处理程序是一个django活塞资源,我在下面给出了POST(创建函数),
def create(self, request):
try:
link_obj = Link.objects.get(link = request.POST['link'])
print link_obj
link_obj.rec_count = link_obj.rec_count+ request.POST.get('rec_count', 1)
link_obj.save()
return link_obj
except:
try:
query_obj = Query.objects.get(query_word = request.POST['query'])
print query_obj
except:
query_obj = Query(query_word = request.POST['query'])
query_obj.save()
link_obj = Link(link = request.POST['link'], rec_count = request.POST.get('rec_count', 1), query = query_obj)
link_obj.save()
return link_obj
以上所有都很好,当我通过CURL进行POST请求时,它完全正常。 例如,下面是我的CURL请求,
curl -d "query=hp&link=http://www.shopping.hp.com/&rec_count=1" http://localhost:8000/api/links/
但是当我从一个greasemonkey脚本尝试这个时,它总是会回复400错误:(
以下是相关的greasemonkey脚本
GM_xmlhttpRequest({
method:"POST",
url:"http://localhost:8000/api/links/",
headers:{
"User-Agent":"Mozilla/5.0",
"Accept":"text/json",
"Content-Type" : "application/x-www-form-urlencoded"
},
data: encodeURI("query="+GM_getValue('q', '')+"&link="+this.previousSibling.href+"&rec_count=1"),
onerror: function errorhand()
{
alert("error occurred!");
}
});
可能是什么问题?
答案 0 :(得分:2)
对不起噪音,好像这是一个django-piston问题。
以下是详细信息。 https://bitbucket.org/jespern/django-piston/issue/87/split-charset-encoding-form-content-type