jQuery Mockjax

jQuery Mockjax用于模拟Ajax请求数据,以解决Server API未就绪时的前端开发阻塞问题。

假设前端发起一个/test/inline API的请求:

$.ajax({
    url: '/test/inline',
    dataType: 'json',
    success: function(json) {
        alert('You said: ' + json.say);
    }
});

假若API同时在开发当中,此时可以使用jQuery Mockjax来模拟API:

$.mockjax({
    url: '/test/inline',
    dataType: 'json',
    responseTime: 2500,
    responseText: {
        say: 'Hello world!'
    }
});

项目地址:

0%