如何异步从数据库中获取行?

时间:2018-03-21 20:21:34

标签: php jquery ajax laravel

我使用laravel和php创建了一个博客。在我的主页面中,我一次显示我数据库中的所有帖子。我想一次加载我的帖子,就像facebook一样。 我正在使用jquery ajax方法,但我不清楚如何编码它。

这就是我试图在我的控制器中执行此操作的方法

// retrieve all the post from the database
$posts = DB::table('posts')->get();

return response() //what should I add here
// what should I do next

在html端

$.ajax('/', {dataType: html}).done();

我希望以html的形式回复,我会将它添加到正文中。

0 个答案:

没有答案