0

我使用在 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(确定)。但不返回数据,返回大小写:错误

你能帮我修一下吗。谢谢大家,

4

1 回答 1

0

试试这个代码。

<script>
            $('document').ready(function() {     
                var url ="http://192.168.1.10:8000/json/";
                $.ajax({
                    url: url,
                    type: "GET",

                    dataType: "json",

                    success: function(data) {
                        alert(success);
                        dat1=data.key1;
                        alert(dat1)
                    },
                    error: function(xhr, textStatus) {
                       console.log("error..");
                    }
                });
            });
        </script>

在你看来

def json_page(request):

        to_json = {
            "key1" : "value1",
            "key2" : "value2"
        }
        data=json.dumps(to_json)
        return HttpResponse(data, mimetype="application/json)
于 2014-05-10T07:26:11.817 回答