1

我正在尝试使用 jquery-mockjax 库来模拟 ajax,但我看不到任何响应。我的代码如下:

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <script src="components/jquery/jquery.js"></script>
    <script src="components/jquery-mockjax/jquery.mockjax.js"></script>
    <script>
        $(function(){
            $.mockjax({
                url: '/test/inline',
                contentType: "text/json",
                responseTime: 0,
                responseText: {
                    say: 'Hello world!'
                }
            });

            $('#btn').click(function(){
                $.ajax({
                    url: '/test/inline',
                    type: "GET",
                    dataType: 'json',
                    success: function(json) {
                        alert('You said: ' + json.say);
                    },
                    complete: function() { 
                        $.mockjaxClear(); 
                        alert('completed');
                    }
                });
            }
            );
        });
    </script>
</head>
<body>
    <button id="btn">Get</button>
</body>
</html>

有什么我想念的吗?

4

2 回答 2

2

我也遇到了同样的问题,头撞了半个小时,大喊“为什么?”

尝试将 jQuery 降级到 1.*

于 2013-05-31T06:18:27.833 回答
0

响应时间增加。

responseTime: 10,
于 2013-05-07T06:15:06.347 回答