由於您將返回的json數據與status_message
和alert_type
,我們有兩個變量與我們但這裏Laravel不知道在哪裏需要顯示響應。
如果您要返回api調用而不是okey,則只需要操作status_message
和alert_type
,但如果是視圖,則需要返回要使用此變量的視圖。
即
return view('index', ['status_message' => $this->status_message, 'alert_type' => $this->alert_type]);
此返回具有兩個變量如$status_message
和$alert_type
的index.blade.php。
我index.blade.php位於此目錄結構:
|-resources
|- assets
|- views
|-index.blade.php
你可以使用它像:
index.blade.php
<span> {{ $status_message }} </span>
<span> {{ $alert_type }} </span>
這可以幫助你。
如果您想了解更多關於如何通過價值來查看,這裏是鏈接到文檔:
https://laravel.com/docs/5.3/views#passing-data-to-views
你是什麼意思與「不行」? – jarguez01
你可以添加你的視圖代碼嗎? – PaladiN
不是我很困惑如何編寫代碼來在刀片視圖中顯示jso響應消息。 –