my ajax is :
$('#save').click(function(){
$.post("http://127.0.0.1:8080/sss",
function(data){
alert(data);
});
})
and the django view is :
def sss(request):
return HttpResponse('ddddddddddd')
how to get some data from the view 'sss'
thanks