CakePHP:更改Js Helper setVariable

时间:2014-10-28 23:11:01

标签: javascript cakephp helper

如何更改设置,例如CakePHP的Js Helper变量? 我会说这样的话:

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

但它没有效果。

我的视图中的

echo $this->Js->writeBuffer(…);仍有此输出:window.app = { … }而不是:window.foo = { … }

我无法弄清楚出了什么问题:(

1 个答案:

答案 0 :(得分:0)

嗯,我自己解决了。我在调用$this->Js->setVariable = 'APP';

之前在我的视图中添加了echo $this->Js->writeBuffer(…);