摘要: 设置路由 //使用session,需要开启session,//session的开始类在/app/Kernel下//protected $middlewareGroups = [// 'web' => [// \Illuminate\Session\Middleware\StartSession::c 阅读全文
posted @ 2018-05-15 15:19 学知无涯 阅读(1338) 评论(0) 推荐(0) 编辑
摘要: public function request1(Request $request){ //取值 $name = Request::input('name'); //是否有值 if($request->has('name')){ echo $request->input('name'); } $re 阅读全文
posted @ 2018-05-15 14:03 学知无涯 阅读(1330) 评论(0) 推荐(0) 编辑
摘要: <a href="{{ url('url') }}">url</a><a href="{{ action('StudentController@urlTest') }}">action</a><a href="{{ route('url') }}">route</a> 阅读全文
posted @ 2018-05-15 13:48 学知无涯 阅读(339) 评论(0) 推荐(0) 编辑
摘要: {{ $name }}{{ date('Y-m-d H:i:s',time()) }}{{ in_array($name,$arr)?'true':'false' }}{{ isset($name)?$name:'default' }}{{ $name or 'default' }}原样输出 @{{ 阅读全文
posted @ 2018-05-15 11:46 学知无涯 阅读(2079) 评论(0) 推荐(0) 编辑
摘要: //模型中的相关代码 namespace App;use Illuminate\Database\Eloquent\Model;class Student extends Model{ //默认对应的是模型复数,即students,如果不是,需要自己指定表名 protected $table = ' 阅读全文
posted @ 2018-05-15 11:26 学知无涯 阅读(283) 评论(0) 推荐(0) 编辑
摘要: //查询构造器 public function query() { //获取所有的数据 $student = DB::table('student')->get(); var_dump($student); //获取一条数据 $student = DB::table('student')->firs 阅读全文
posted @ 2018-05-15 10:36 学知无涯 阅读(222) 评论(0) 推荐(0) 编辑
摘要: //查询构造器public function query(){ $bool = DB::table('student')->insert([ ['name' => '王五', 'age' => 17, 'gender' => 1], ['name' => '王五2', 'age' => 17, 'g 阅读全文
posted @ 2018-05-14 18:00 学知无涯 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 注意 laravel中return true会报错: (1/1) UnexpectedValueException The Response content must be a string or object implementing __toString(), "boolean" given. 阅读全文
posted @ 2018-05-14 17:52 学知无涯 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 数据库配置文件为项目根目录下的config/database.php //默认数据库为mysql 'mysql' => [ 'driver' => 'mysql', 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '33 阅读全文
posted @ 2018-05-14 17:32 学知无涯 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 建立model文件,再项目的app目录下建立Member.php 阅读全文
posted @ 2018-05-14 17:20 学知无涯 阅读(118) 评论(0) 推荐(0) 编辑