如何更改设置,例如CakePHP的Js Helper变量? 我会说这样的话:
class AppController extends Controller {
public $helpers = array('Js' => array('setVariable' => 'foo'));
但它没有效果。
我的视图中的 echo $this->Js->writeBuffer(…);
仍有此输出:window.app = { … }
而不是:window.foo = { … }
我无法弄清楚出了什么问题:(
答案 0 :(得分:0)
嗯,我自己解决了。我在调用$this->Js->setVariable = 'APP';
echo $this->Js->writeBuffer(…);