我正在尝试使用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>
我有什么遗失的吗?
答案 0 :(得分:2)
我遇到了同样的问题,正在敲打我的头半小时,大喊“为什么?”
尝试将jQuery降级为1。*
答案 1 :(得分:0)
ResponseTime增加。
responseTime: 10,