我正在尝试使用PhraStorm和artisan服务器使用Laravel构建RESTful API,但是当我尝试使用Rest Client进行测试时,我收到此错误:
现在我只编写GET方法,并在浏览器中收到地址为http://localhost:8000/users
这是我的代码:
routes.php文件
Route::resource('users','UserController');
UserController.php
public function index()
{
return \Response::json(User::all());
}
我还尝试在请求窗口中添加json
答案 0 :(得分:5)
php artisan serve --host 127.0.0.1
应该可以解决问题。
看起来PHPStorm会对localhost
进行查找,从而产生127.0.0.1
。但php artisan serve
绑定到您的本地IPv6地址::1
。