我想包装 Prototype Ajax.Request 以模拟 AJAX 延迟。我的意思是,使用闭包和 Prototype 的 delay() 工具,但显然我的代码有问题
/*
* Purpose: simulate AJAX latency when developing on localhost
* What's wrong?
*/
Ajax.Request = (function(original) {
return function(url, options) {
return original.delay(1, url, options);
};
}) (Ajax.Request);