0

如果需要为引导运行 Gii,那么我应该运行哪个生成器以及应该运行哪个名称?

这是我的代码:

Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');

return array(
'theme'=>'bootstrap', // requires you to copy the theme under your themes directory
'modules'=>array(
    'gii'=>array(
        'generatorPaths'=>array(
            'bootstrap.gii',
        ),
    ),
),
'components'=>array(
    'bootstrap'=>array(
        'class'=>'bootstrap.components.Bootstrap',
    ),
),
);
4

1 回答 1

0
`enter code here` 'gii'=>array(
            'class'=>'system.gii.GiiModule',
            'password'=>'admin',
            'generatorPaths'=>array(
                'bootstrap.gii',
            ),
        ),
于 2013-06-27T15:45:43.597 回答