我跟着這個Link。我的代碼視圖如何在Yii2中設置Flash消息?
<div id="message">
<?= Yii::$app->session->getFlash('success');?>
</div>
現在我所做的是不是我所期待的結果在控制器
public function actionFunction4()
{
$this->layout="sintel";
$model= new Customers();
\Yii::$app->getSession()->setFlash('success', 'successfully got on to the payment page');
return $this->render("function4",['model'=>$model]);
}
如下 。我收到了一條「成功進入付款頁面」的消息,就像我已經迴應了一樣。如果它與回聲相似,那麼爲什麼我們需要在Yii2中提供一個Flash消息。我想我可能會在我的代碼中丟失一些東西,使我的Flash消息看起來像普通的消息。
你困惑的控制器類東西閃光消息是(在yii中)。這只是一個消息,只會顯示一次,然後從會話中刪除。 – DrunkWolf
是的,我有點困惑。 – Bloodhound