所以如果我从浏览器中调用它,那么这个laravel get product api是否有效,正如你从这张图片中看到的那样
这是试图获得此json响应的curl代码块
$url = 'http://localhost:8000/api/products';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);
$result = json_decode($data,true);
echo $result;
但我无法得到任何结果,没有回应。我在https://demo0546443.mockable.io/products/getAllProducts中有一个可模拟的api,它产生与我的localhost api几乎相同的json,它返回应该有的响应。请帮忙
解 因此,经过无数个小时的研究,似乎需要在静态IP上访问laravel,而不是在localhost上访问。
答案 0 :(得分:0)
虽然建议使用像Guzzle这样的库来代替HTTP请求。但是非常需要实现和使用
答案 1 :(得分:0)
而不是echo $result
尝试return response()->json($data)
。
echo $result
返回标题application/html
,而json()
返回application/json
希望这会有所帮助。