在Yii下进行模块化(module)编程以及出现Unable to resolve the request的解决办法

在Yii下进行模块化(module)编程以及出现Unable to resolve the request的解决办法


 环境:NetBeans IDE ,wampserver

 数据库:MySQL


 以生成一个shop模块为例

在Yii下进行模块化(module)编程以及出现Unable to resolve the request的解决办法_第1张图片

【1】在工程中使用Gii生成模块文件夹modules (参考Yii通过Gii实现CRUD与生成Module)

【2】在protected/config文件夹下的main.php增加模块(重点注意

  在Yii下进行模块化(module)编程以及出现Unable to resolve the request的解决办法_第2张图片

     如果没有在main.php下添加相应的模块,会出现错误提示" Unable to resolve the request "shop/shop/index" "

  

 【3】在protected/views/layouts/main.php的链接访问,需要设置地址为

 array('label'=>'Shop','url'=>array('/shop/shop/index')) 


 

你可能感兴趣的:(Yii)