1

次のコードがあります。

$this->Js->get('#get_meters_today')->event('click',
    $this->Js->request(
        array('action' => 'getMetersToday'),
        array('async' => true, 'update' => '#meters_today')
    )
);

$this->Html->scriptBlock(
    $this->Js->domReady(
        $this->Js->request(
            array('action' => 'getMetersToday'),
            array('async' => true, 'update' => '#meters_today')
        )
    ), array('inline' => false)
);

私がやりたいことは、Js->request一度書かれ、clickメソッドとメソッドによって参照されるだけdomReadyです。どうすればいいですか?

ありがとう

4

0 に答える 0