摘要:
git的简单使用 1、如果文件夹不是git仓库,则先创建git仓库(git init),初始化git仓库,(git clone <远程仓库地址>)把远程项目clone到本地。 2、(git status)可查看改变文件的状态,(git diff)可以具体看到哪一行。 3、(git add .)将所有 阅读全文
摘要:
public function request(Request $request){ //1.取值 //echo $request->input('name'); //echo $request->input('sex','未知'); /*if($request->has('name')){ ech 阅读全文
摘要:
//设置session里的值 public function session1(Request $request){ //1.HTTP request session(); /*$request->session()->put('key1','value1'); echo $request->ses 阅读全文
摘要:
public function response(){ //响应json /*$data = [ 'errCode'=>0, 'errMsg' =>'success', 'data' => 'yxh', ]; return response()->json($data);*/ //重定向 //ret 阅读全文
摘要:
laravel框架写的简易版的学生信息管理平台,贯穿了laravel的控制器、视图、模板、模型、中间件、路由规则的使用。 页面是使用BootStrap前端框架搭建 使用laravel实现了增删改查的功能。 代码下载链接在文章底部。 //这是路由文件的关键代码 Route::group(['middl 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>模板继承@yield('title')</title> <style> .header{ width: 1000px; height:150px; margin 阅读全文
摘要:
public function query(){ //新增数据 //$bool = DB::table('wd_user')->insert(['username'=>'jack']); //dd($bool); //新增数据并且获取到自增id //$id = DB::table('wd_user' 阅读全文
摘要:
public function orm(){ //查询表的所有记录 //$user = Admin::all(); //dd($user); //查询某一条记录 //$user = Admin::find(2); //dd($user); //findOrFail() 根据主键查找,如果没有找到就抛 阅读全文
摘要:
<?phpnamespace App;use Illuminate\Database\Eloquent\Model;class Admin extends Model{ //指定表名 protected $table = 'wd_user'; //指定允许批量复制的字段 protected $fil 阅读全文
摘要:
//路由中输出视图Route::get('/', function () { return view('welcome');});//get路由请求Route::get('get',function(){ return 'get路由请求';});//post路由请求Route::post('post 阅读全文