0

JSONデータがあります。応答の場合dd()、完全なjsonを見ることができますが、JSON応答として返すと、jsonはブレーキング/部分的に返されます/切り捨てられ、有効なjsonでもありません。スクリーンショット - JSON 応答の終わり以下は私が使用しているコードです

public function getLocations($json = true)
{
    $locations = [
        'countries'     => $this->mobileAppController->getCountries(),
        'states'        => $this->mobileAppController->getStates(),
        'cities'        => $this->mobileAppController->getCities(),
        'regions'       => $this->mobileAppController->getRegions()
    ];
    //dd(response()->json($locations));
    return $json ? response()->json($locations) : $locations;
}

私はホームステッドのインストールをしています。そしてステージング環境。ローカル/ホームステッドではすべて正常に動作します。応答は完全に返されます。ステージングは​​ envoyer サーバーです。そこでは、応答が切り捨てられたり、中断されたり、部分的に返されたりします。何が問題なの?

4

0 に答える 0