小编Ass*_*lah的帖子

Yii Controller无法找到请求的视图

我在渲染"错误"视图时遇到此错误

ApiController cannot find the requested view "error".
Run Code Online (Sandbox Code Playgroud)

所有目录都是小写字母.我在Linux机器上运行Yii

Sample Code:

class ApiController extends Api
{
    private $api;
    private $placesapikey;

public function __construct()
{
    parent::__construct("Api");
    $uri = explode('=', Yii::app()->request->getQueryString());
    $this->api = end($uri);
    $this->placesapikey = "";

    if ($this->api != Yii::app()->params['apikey'] || $this->api == '')
    {
        $error['data']['title'] = "Un-Authorized Access";
        $error['data']['message'] = "You are not authorized to access or view this area";
        $this->render('error', $error);
        exit;
    }
}
Run Code Online (Sandbox Code Playgroud)

php yii

6
推荐指数
1
解决办法
7984
查看次数

标签 统计

php ×1

yii ×1