How can I disable yii-debug-toolbar on a specific view?

后端 未结 8 1406
你的背包
你的背包 2021-02-02 12:58

How can I disable yii-debug-toolbar on a specific view especially on partial rendered views?

Is this possible?

p.s. Yii-debug-toolbar

8条回答
  •  礼貌的吻别
    2021-02-02 13:37

    Just Remove or comments out the those two lines from /config/web.php

    $config['bootstrap'][] = 'debug';
    $config['modules']['debug'] = 'yii\debug\Module';
    

提交回复
热议问题