我的JSON文件就像
{ "A": ["Apple"],
"B": ["Ball"],
"C": ["Cat"],
"D": ["Dog"],
"E": ["Elephant"],
"F": ["Frog"],
"G": ["Got"],
}
当我提供输入时 - >>文本框中的ABC然后结果将像
苹果
球
猫
可以做些什么?
答案 0 :(得分:0)
在laravel你喜欢这样。
return response()->json($data);
答案 1 :(得分:0)
我认为你可以这样做:
要使用PHP以JSON格式发送数据,请使用:
$array = array(1,2,3,4,5);
echo json_encode($array);
要使用PHP接收JSON格式的数据,请使用:
$data = $_GET["x"]; // or
$data = $_POST["x"];
$result = json_decode($data);
希望可以提供帮助。