Suzukaze

272 经验值

重新运行了一下php artisan serve就好了,不知道为什么

Chrome就报了localhost 网页无法正常运作 localhost 目前无法处理此请求 HTTP ERROR 500。。。。。

路由应该是正确的,我在index方法中直接返回字符串是可以正确显示的,命名空间是这个 App\Http\Controllers 吧。然后代码
<pre>
namespace App\Http\Controllers;

use App\Article;
use Illuminate\Http\Request;

class ArticlesController extends Controller
{

public function index(){
    $articles = Article::all();
    return $articles;
    //return view('articles.index',compact('articles'));
}

}

</pre>

一分四十六秒,$articles = Article::all(); 为什么我这里显示无法处理此请求。路由没问题,可以正常访问,数据也没问题,在命令行php artisan tinker里输入$articles = App\Article::all();可以看到所有数据。