У меня вопрос, я столкнулся с такой проблемой, страница в контроллере есть, но при обращение к ней у меня выходит The requested page does not exist.
Хотя id передается, action в controllere есть. В чем может быть причина этой проблемы. Выходит ошибка 404
Во вьюшке я выставляю ссылку на переход на эту страницу
<?= Html::a('Отметить все прочитаным', ['ready', 'id' => Yii::$app->user->id]) ?>
В этом же контроллере. Index не стал писать
class NotificationController extends Controller
{
public function actionReady($id)
{
$model = $this->findModel($id_user);
// $model = new Notification();
$model->getDb()->createCommand()->update('notification', ['active' => 0], 'id_user = $id')->execute();
return $this->redirected(['index']);
// return $this->render('ready');
}
/**
* Finds the Notification model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return Notification the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = Notification::findOne($id)) !== null) {
return $model;
} else {
throw new NotFoundHttpException('The requested page does not exist.');
}
}
}