Yii2 为什么 debug-toolbar 调试工具栏不显示了?
1
JasonTsang OP 没有人吗
|
2
Paual 2019-03-29 17:16:05 +08:00
我看着你的代码不像是最新 Yii2 的代码,然后我也遇到过 debug 不出来的情况,我的是最新的版本,在 web/config.php 下面有一个配置的地方,默认允许的是本地访问,localhost/127.0.0.1,如果你想要你使用不同的 IP 地址访问需要把你的 ip 地址加进去,下面是我的配置,不知你的是不是这个问题,可以参考一下哈
if (YII_ENV_DEV) { // configuration adjustments for 'dev' environment $config['bootstrap'][] = 'debug'; $config['modules']['debug'] = [ 'class' => 'yii\debug\Module', // uncomment the following to add your IP if you are not connecting from localhost. 'allowedIPs' => ['127.0.0.1','192.168.56.*', '::1'], ]; $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', // uncomment the following to add your IP if you are not connecting from localhost. 'allowedIPs' => ['127.0.0.1','192.168.56.*', '::1'], ]; } |
3
encro 2019-03-29 17:28:54 +08:00
1,index.php 的 YII_DEBUG 设置为 true
2,allowedIPs 设置 3,layout/main.php 需要加载资源 欢迎加入 Yii 中国。 |
4
JasonTsang OP @encro layout/main.php 要加载什么资源?求代码。。。为什么文档完全没有写?
|
5
jianyan74 2019-03-29 21:47:09 +08:00
https://github.com/jianyan74/rageframe2 这里有很多案例你可以看下
|
7
encro 2019-03-31 18:44:59 +08:00
|
8
ywisax 2019-04-04 01:03:58 +08:00
你的 view,应该类似这样才行
``` <?php $this->beginPage(); $this->head(); $this->beginBody(); $this->endBody(); $this->endPage(); ``` |