0

我正在使用带有 ajax 的分页器:

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

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

4

1 回答 1

0

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

$this->Paginator->options(array(
    'update' => '#content',
    'evalScripts' => true,
    'beforeSend' => // do js stuff here
));
于 2012-05-10T14:24:59.893 回答