Yii:无法加载网址页面“错误404无法解析请求”用户/用户页面“。”

时间:2015-12-05 08:59:49

标签: php yii

我是yiibie,我正在尝试从用户表中获取用户数据。为此,我在视图中创建了一个userpage.php文件,并在名为user controller的{​​{1}}中编写了一个函数,以从表中获取用户数据。在完成所有这些操作后,当我写下网址Userpage时,它会给我一个错误

"localhost/projectname/user/userpage?id="anyid"

这是我的Error 404 Unable to resolve the request "user/userpage".

的代码
UserController

这是我的视图文件(userpage.php)的代码

<?php

class UserController extends RController
{
    /**
    * @var string the default layout for the views. Defaults to '//layouts/column2', meaning
    * using two-column layout. See 'protected/views/layouts/column2.php'.
    */
    public $layout='//layouts/admin';

    /**
    * @return array action filters
    */
    public function filters()
    {
        return array(
            //          'accessControl', // perform access control for CRUD operations
            //          'postOnly + delete', // we only allow deletion via POST request
                    'rights',
        );
    }

    /**
    * Specifies the access control rules.
    * This method is used by the 'accessControl' filter.
    * @return array access control rules
    */
    public function accessRules()
    {
        return array(
            array('allow',  // allow all users to perform 'index' and 'view' actions
                'actions'=>array('index','view'),
                'users'=>array('*'),
            ),
            array('allow', // allow authenticated user to perform 'create' and 'update' actions
                'actions'=>array('create','update'),
                'users'=>array('@'),
            ),
            array('allow', // allow admin user to perform 'admin' and 'delete' actions
                'actions'=>array('admin','delete'),
                'users'=>array('admin'),
            ),
            array('deny',  // deny all users
                'users'=>array('*'),
            ),
        );
    }

    /**
    * Displays a particular model.
    * @param integer $id the ID of the model to be displayed
    */
    public function actionView($id)
    {
        $this->render('view',array(
            'model'=>$this->loadModel($id),
        ));
    }
        public function actionUserpage($id)
        {
            $this->layout='main';
        $this->render('userpage',array(
            'model'=>$this->loadModel($id),
        ));
        }

    /**
    * Creates a new model.
    * If creation is successful, the browser will be redirected to the 'view' page.
    */
    public function actionCreate()
    {
        $model=new User;

        // Uncomment the following line if AJAX validation is needed
        // $this->performAjaxValidation($model);

        if(isset($_POST['User']))
        {
                    $rnd = rand(0,9999);  // generate random number between 0-9999
            $model->attributes=$_POST['User'];
                        $uploadedFile=CUploadedFile::getInstance($model,'image');
            $fileName = "{$rnd}-{$uploadedFile}";  // random number + file name
            $model->image = $fileName;
            if($model->save())
                            {
                $uploadedFile->saveAs(Yii::app()->basePath.'/'.$fileName);  // image will uplode to rootDirectory/event/
                $this->redirect(array('admin'));
            }
                $this->redirect(array('view','id'=>$model->id));
        }

        $this->render('create',array(
        'model'=>$model,
        ));
    }

    /**
    * Updates a particular model.
    * If update is successful, the browser will be redirected to the 'view' page.
    * @param integer $id the ID of the model to be updated
    */
    public function actionUpdate($id)
    {
        $model=$this->loadModel($id);

        // Uncomment the following line if AJAX validation is needed
        // $this->performAjaxValidation($model);

        if(isset($_POST['User']))
        {
                    $_POST['User']['image'] = $model->image;
            $model->attributes=$_POST['User'];
                        $uploadedFile=CUploadedFile::getInstance($model,'image');
            if($model->save())
                             {
                if(!empty($uploadedFile))  // check if uploaded file is set or not
                {
                 $uploadedFile->saveAs(Yii::app()->basePath.'/'.$model->image);
                }
                $this->redirect(array('admin'));
            }
                $this->redirect(array('view','id'=>$model->id));
        }

        $this->render('update',array(
            'model'=>$model,
        ));
    }

    /**
    * Deletes a particular model.
    * If deletion is successful, the browser will be redirected to the 'admin' page.
    * @param integer $id the ID of the model to be deleted
    */
    public function actionDelete($id)
    {
        if(Yii::app()->request->isPostRequest)
        {
            // we only allow deletion via POST request
            $this->loadModel($id)->delete();

            // if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser
            if(!isset($_GET['ajax']))
                $this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin'));
        }
        else
            throw new CHttpException(400,'Invalid request. Please do not repeat this request again.');
    }

    /**
    * Lists all models.
    */
    public function actionIndex()
    {
        $dataProvider=new CActiveDataProvider('User');
        $this->render('index',array(
            'dataProvider'=>$dataProvider,
        ));
    }

    /**
    * Manages all models.
    */
    public function actionAdmin()
    {
        $model=new User('search');
        $model->unsetAttributes();  // clear any default values
        if(isset($_GET['User']))
            $model->attributes=$_GET['User'];

        $this->render('admin',array(
            'model'=>$model,
        ));
    }

    /**
    * Returns the data model based on the primary key given in the GET variable.
    * If the data model is not found, an HTTP exception will be raised.
    * @param integer $id the ID of the model to be loaded
    * @return User the loaded model
    * @throws CHttpException
    */
    public function loadModel($id)
    {
        $model=User::model()->findByPk($id);
        if($model===null)
            throw new CHttpException(404,'The requested page does not exist.');
        return $model;
    }

    /**
    * Performs the AJAX validation.
    * @param User $model the model to be validated
    */
    protected function performAjaxValidation($model)
    {
        if(isset($_POST['ajax']) && $_POST['ajax']==='user-form')
        {
            echo CActiveForm::validate($model);
            Yii::app()->end();
        }
    }
}

这是config / main.php

 <div class="profile">
 <div class="row">
 <div class="col-md-4">
 <img src="<?php echo Yii::app()->request->baseurl;?>/img/<?php echo $model->profile->picture;?>" class="img-responsive"><br>
 </div>
 <div class="col-md-6">
 <h2 class="profile-name"><?php echo $model->username;?></h2>
 <hYii: Unable to load the url page " Error 404 Unable to resolve the request "user/userpage"."

2 个答案:

答案 0 :(得分:1)

检查您是否有一个名为

的正确视图
 userpage.php 

在用户的view目录中 (用户的相关视图目录取决于您使用的用户组件。)

检查应用程序的命名空间或config / main.php,找到合适的目录。

同时检查您是否在User模型的accessRules中正确分配了用户页面。

绝对确定您使用的是有效的$ id值。因为如果在db中找不到id的值应该引发这种消息

并尝试添加prettyUrl = true,否则您无法使用您的符号

     'urlManager'=>array(
        'urlFormat'=>'path',
        'showScriptName'=>false,
        'enablePrettyUrl' => true,   // Disable r= routes
        'rules'=>array(
    //'<controller:\w+>'=>'<controller>/list',
            '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
            '<controller:\w+>/<id:\d+>/<title>'=>'<controller>/view',
            '<controller:\w+>/<id:\d+>'=>'<controller>/view',
        ),
    ),

答案 1 :(得分:0)

您还需要在userpage功能中注册public function accessRules()操作,如果没有该操作,则无法通过网址访问此操作。

public function accessRules()
    {
        return array(
            array('allow',  // allow all users to perform 'index' and 'view' actions
                'actions'=>array('index','view'),
                'users'=>array('*'),
            ),
            array('allow', // allow authenticated user to perform 'create' and 'update' actions
                'actions'=>array('create','update','userpage'),
                'users'=>array('@'),
            ),
            array('allow', // allow admin user to perform 'admin' and 'delete' actions
                'actions'=>array('admin','delete'),
                'users'=>array('admin'),
            ),
            array('deny',  // deny all users
                'users'=>array('*'),
            ),
        );
    }

请注意,上述更改只允许用户使用userpage操作,如果您希望将其公开添加到'users'=>array('*'),数组