cake php paginator和ajax - 如何在ajax请求之前调用函数?

时间:2012-05-09 21:55:41

标签: cakephp cakephp-2.0

我正在使用带有ajax的paginator:

$this->Paginator->options(array(
    'update' => '#content',
    'evalScripts' => true
));

它工作正常,但在发送ajax请求之前(例如当用户点击下一页时)我想在网站上显示一些“加载”信息。是否有任何选项可以在paginator中设置一些回调(javascript函数)?

1 个答案:

答案 0 :(得分:0)

由于PaginatorHelper在检测到“更新”键时使用JsHelper创建链接,因此您可以使用与JsHelper的链接和请求函数相关的所有键。

$this->Paginator->options(array(
    'update' => '#content',
    'evalScripts' => true,
    'beforeSend' => // do js stuff here
));