使用瓶子的休息Web服务(JQuery和JSON)

时间:2014-01-31 15:54:21

标签: jquery json web-services rest bottle

我想使用这个返回JSON响应的其他Web服务:

web_service.py

from bottle import route, run

@route('/example')
def example():
    return {"result_1" : 3, "result_2" : 5}

run(host='localhost', port=8080)

我的JavaScript文件是这样的:

java_s.js

$(document).ready(function() {
    $.ajax({
        type: "GET"
        url: "http://localhost:8080/example",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(resp){
            $('.result_1').append(resp.result_1)
            $('.result_2').append(resp.result_2)
        }
    })
});

我想要使用Web服务的html文件是:

的index.html

<head>
    <title>example</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
    <script src="java_s.js"></script>
</head>

<body>
    <div>
        <p class="result_1">result 1: </p>
        <p class="result_2">result 2: </p>
    </div>
</body>

但是,当我打开索引文件时,结果不会显示。你能给我一些解决这个问题的建议吗?谢谢!

1 个答案:

答案 0 :(得分:0)

您正在返回一个python dict对象,而不是一个json字符串。您可以手动编码字符串,或者使用例如json库来实际输出json。

import json添加到文件的开头,然后更改为return json.dumps({"result_1" : 3, "result_2" : 5})以返回从python dict对象创建的实际json字符串。