我正在使用django和django_rest_framework建立一个网站。 我用httpie测试了其余的api。
但是当我尝试使用jQuery进行相同的调用时,我得到一个错误。
jquery.min.js:4 GET http://localhost:8000/api/recentposts/?{%22last_id%22:1650} 500 (Internal Server Error)
使用httpie进行的呼叫如下
http get localhost:8000/api/recentposts/ last_id=1650
或
http get localhost:8000/api/recentposts/ < recent.json
----------------------------
content of recent.json
{
"last_id": 1650
}
我得到了正确的结果。
与jquery一起尝试
$.ajax({
type: 'GET',
url: 'http://localhost:8000/api/recentposts/',
contentType: 'application/json',
dataType: 'json',
processData: false,
data: JSON.stringify({ last_id : 1650 }),
success: function(resp){
console.log(resp);
}
});
通话有问题吗? 我尝试过.get而不是.ajax,以及通过json的许多不同方法,但我还没有解决任何问题。
顺便说一下,这就是名为
的视图class RecentPostViewSet(viewsets.ReadOnlyModelViewSet):
'''
ViewSet that displays recent posts after it post id
It needs a JSON file like the following
{
"last_id" : int
}
'''
queryset = Post.objects.all()
serializer_class = PostSerializer
def list(self, request):
recent_feed = Post.objects.filter(hidden=False).order_by('-pub_date').filter(pk__gt=request.data['last_id'])
log.warning("incoming request")
log.warning(dir(request))
log.warning(request.data)
log.warning(request.query_params)
serializer = self.get_serializer(recent_feed, many=True)
return Response(serializer.data)
这是因为jQuery get call无法使用json正文执行get请求吗?或者我弄错了? 顺便说一句,我正在使用jQuery 3.1.1
答案 0 :(得分:1)
在构建GET请求时(而不是$.param
函数),您应该使用JSON.Stringify
函数。
data: $.param({'last_id' : 1650 }),
$.ajax({
type: 'GET',
url: '/',
dataType: 'json',
processData: false,
data: $.param({'last_id' : 1650 }),
success: function(resp){
console.log(resp);
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>