我使用在 ubutu 上运行的 django 1.4。我正在尝试使用 jquery/ajax 来显示从 django 方法返回的数据。
我的文件views.py
def json_page(request):
to_json = {
"key1" : "value1",
"key2" : "value2"
}
return HttpResponse(simplejson.dumps(to_json), mimetype="application/json;charset=UTF-8")
我的html文件:
<script>
$('document').ready(function() {
var url = "http://192.168.1.10:8000/json/";
$.ajax({
url: url,
type: "GET",
contentType: "application/json; charset=utf-8",
dataType: "json",
crossDomain: false,
success: function(data) {
alert(data);
},
error: function(xhr, textStatus) {
console.log("error..");
}
});
});
</script>
我运行文件 html,触发错误返回状态 = 200(确定)。但不返回数据,返回大小写:错误
你能帮我修一下吗。谢谢大家,