Wenn 'default_return_type' => 'html', verwenden Sie die Funktion json() in der Rückgabe der Controller-Methode, um den Ausgabetyp als JSON anzugeben.
Im Gegenteil, 'default_return_type' => 'json', wie funktioniert das Controller HTML als Ausgabetyp angeben?
刚刚又仔细看了看文档,来自问自答了。public function hello() { $data = 'Hello,ThinkPHP!'; return response($data); },
参见 响应输出 章节。