php框架laravel,laravel视图,lar
后端开发-php教程
添加路由web商城源码,vscode0用户代码片段,ubuntu要分区,tomcat设置默认请求,python爬虫汽车,php lmbs,松溪提供seo费用是多少lzw
Route::get(‘artiles’, ‘ArticlesController@index’);
接金币游戏源码,ubuntu查找端口pid,网页爬虫的作用,php卷子,耒阳seo托管lzw
cmdbuild 源码包,ubuntu锁屏进程,虚拟机 tomcat 启动,网络爬虫豆瓣,七牛云直播 php,酒seolzw
创建控制器php artisan make:controller ArticlesController –plain
修改控制器
<?php namespace App\Http\Controllers;use App\Article;use App\Http\Requests;use App\Http\Controllers\Controller;use Illuminate\Http\Request;class ArticlesController extends Controller { public function index() { $articles = Article::all(); return $articles; }}
可以在浏览器中看到返回的 JSON 结果,cool!
修改控制器,返回视图
public function index() { $articles = Article::all(); return view('articles.index', compact('articles')); }
创建视图
@extends('layout')@section('content')Articles
@foreach($articles as $article) {{$article->title}}{{$article->body}}@endforeach@stop
浏览结果,COOL!!!!
显示单个文章
添加显示详细信息的路由
Route::get(‘articles/{id}’, ‘ArticlesController@show’);
其中,{id} 是参数,表示要显示的文章的 id,修改控制器:
public function show($id) { $article = Article::find($id); //若果找不到文章 if (is_null($article)) { //生产环境 APP_DEBUG=false abort(404); } return view('articles.show', compact('article')); }
laravel 提供了更加方便的功能,修改控制器:
public function show($id) { $article = Article::findOrFail($id); return view('articles.show', compact('article')); }
It’s cool.
新建视图
@extends('layout')@section('content'){{$article->title}}
{{$article->body}} @stop
在浏览器中尝试访问:/articles/1 /articles/2
修改index视图
@extends('layout')@section('content')Articles
@foreach($articles as $article) {{--这种方式可以--}} id}}">{{$article->title}} {{--这种方式更加灵活,不限制路径--}}
id])}}">{{$article->title}} {{--还可以使用--}}
id)}}">{{$article->title}}{{$article->body}}@endforeach@stop
以上所述就是本文的全部内容了,希望能够对大家学习Laravel5框架有所帮助。