http応答の解析に問題があります。クライアントにいくつかの値を送信してみます
>>>>return HttpResponse(first=True,second=True)
解析時:
$.post('get_values',"",function(data){
alert(data['first']); //The alert isn't shown!!!
});
httpresponseから値を抽出する正しい方法は何ですか
多分私は私の応答を作成するときに間違いを犯します。