您现在的位置是:网站首页> 编程资料编程资料
Laravel 简单实现Ajax滚动加载示例_php实例_
2023-05-25
358人已围观
简介 Laravel 简单实现Ajax滚动加载示例_php实例_
开发H5项目的时候我们总是需要用到下拉滚动刷新的方式加载页面。这里用 Laravel 实现一下,直接上代码:
创建模型
这里我们不妨创建一个 文章(Post)模型, 并且生成测试数据 50 条吧。
php artisan make:model -m
模型Post.php
namespace App; use Illuminate\Database\Eloquent\Model; class Post extends Model { public $fillable = ['title','description']; } 迁移文件
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePostTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('posts', function (Blueprint $table) { $table->increments('id'); $table->string('title'); $table->text('description'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop("posts"); } } 测试数据 ModelFactory.php
$factory->define(App\Post::class, function (Faker\Generator $faker) { return [ 'title' => $faker->sentence, 'description' => $faker->paragraph, ]; });填充
call(UsersTableSeeder::class); factory(App\Post::class, 50)->create(); } }
路由
Route::get('my-post', 'PostController@myPost');控制器
namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Http\Requests; use App\Post; class PostController extends Controller { public function myPost(Request $request) { $posts = Post::paginate(6); if ($request->ajax()) { $view = view('data',compact('posts'))->render(); return response()->json(['html'=>$view]); } return view('my-post',compact('posts')); } } 视图文件 resources/view/my-post.php
Laravel 分页滚动加载 Laravel 分页滚动加载
@include('data')
resources/view/data.php
@foreach($posts as $post) @endforeach
效果:

以上这篇Laravel 简单实现Ajax滚动加载示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
相关内容
- Laravel 在views中加载公共页面的实现代码_php实例_
- laravel添加前台跳转成功页面示例_php实例_
- Laravel 实现Controller向blade前台模板赋值的四种方式小结_php实例_
- laravel框架如何设置公共头和公共尾_php实例_
- laravel 实现向公共模板中传值 (view composer)_php实例_
- 浅谈laravel数据库查询返回的数据形式_php实例_
- 在laravel中实现将查询的对象转换为多维数组的函数_php实例_
- Laravel5.5 视图 - 创建视图和数据传递示例_php实例_
- laravel orm 关联条件查询代码_php实例_
- 浅谈laravel orm 中的一对多关系 hasMany_php实例_
