1 回答

TA貢獻1810條經(jīng)驗 獲得超4個贊
json_encode如果多次調(diào)用,最終會得到無效的 JSON。相反,您應該完全構(gòu)建數(shù)組結(jié)構(gòu)并json_encode只調(diào)用一次。但是我建議使用response()->json并讓 Laravel 處理 JSON 序列化:
public function index()
{
return view("new_client.register_business");
}
public function receiveValueZip(Request $request)
{
if(!empty($request->get('zip_code')))
{
$result=DB::table('direccion')
->select('Calle1','Calle2')
->where('Id_Direccion','=',6)
->get();
return response()->json(
$result->map(function ($row) {
return array("value1"=>$r->Calle1,"value2"=>$r->Calle2);
});
);
}
}
- 1 回答
- 0 關(guān)注
- 149 瀏覽
添加回答
舉報