使用 CakePHP 3.4 和 PSR-7 自訂 HTTP 回應正文輸出
CakePHP 3.4 引入了使用符合 PSR-7 的回應。 直接透過 echo 回顯資料 現在會因為嚴格的標頭檢查而觸發錯誤。
控制器不應回顯資料。 相反,請使用以下方法輸出自訂HTTP 正文內容:
使用PSR-7 回應介面:
<code class="php">$content = json_encode(['method' => __METHOD__, 'class' => get_called_class()]); $this->response = $this->response->withStringBody($content); $this->response = $this->response->withType('json'); return $this->response;</code>
使用已棄用>
<code class="php">$content = json_encode(['method' => __METHOD__, 'class' => get_called_class()]); $this->response->body($content); $this->response->type('json'); return $this->response;</code>
使用已棄棄>使用已棄用>使用的回應介面(CakePHP 3.4.3 之前):
<code class="php">$content = ['method' => __METHOD__, 'class' => get_called_class()]; $this->set('content', $content); $this->set('_serialize', 'content');</code>
使用序列化視圖:
此方法需要要求處理程序元件和正確的URL 或請求標頭來觸發JSON 視圖渲染。
以上是如何使用 CakePHP 3.4 和 PSR-7 輸出自訂 HTTP 回應正文內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!