2014-10-28 59 views
0

如何更改設置,例如CakePHP的Js Helper的變量? 我會這樣說:CakePHP:更改Js Helper setVariable

class AppController extends Controller { 
    public $helpers = array('Js' => array('setVariable' => 'foo')); 

但它沒有效果。

在我看來echo $this->Js->writeBuffer(…);仍然有這樣的輸出:的window.app = { … }代替:window.foo = { … }

我無法弄清楚什麼是錯:(

回答

0

好吧,我解決我自己我在視圖中添加$this->Js->setVariable = 'APP';剛致電echo $this->Js->writeBuffer(…);