我正在使用 cakephp v2.3.4
在 /app/Config/bootstrap.php 中设置了一个全局变量,如下所示;
Configure::write('Bike.Frontwheel','Gazette, 16 inch');
我在我的任何观点中都看不到这个价值,我做错了什么?我可以通过以下方式更改控制器中的值:
Configure::write('Bike.Frontwheel', $Data['Bike']['description']);
视图中的代码:
<?php echo Configure::read('Bike.Frontwheel'); ?>