次のコードがあります。
$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
です。どうすればいいですか?
ありがとう