• ORM模式


    • laravel接值的方式:Input(),$request->all(),request()->all()
    • 也可以在设置一个基层的额model,里面进行属性的配置
    • 在controller使用ORM模式:
    • <?php
      $post = new Post();
      $post->title = request('title');
      $post->content = request('content');
      $post->save();
      
      
      //第二种
      $param = [
        'title'=>request('title'),
        'content'=>request('content')    
      ];
      post::create($param);
      //另一种入库方法
      post::create(compact('title','content'));
      //第三种 post::create(request(['title','content']));
      //第四种
      $param = [
        'title'=>request('title'),
        'content'=>request('content')    
      ];
      Zan::firstOrCreate($param);//firstOrCreate 方法先尝试通过给定列/值对在数据库中查找记录,如果没有找到的话则通过给定属性创建一个新的记录。
      //此时会报错 Illuminate  Database  Eloquent MassAssignmentException title
      //解决办法:在model层中的自己所实例化的模型中添加两个属性
      //protected $guarded = []; 不可以注入的字段,将其设置为空也可以
      protected $filltable;可以注入的字段;比如说$filltable = ['title','content'];
  • 相关阅读:
    读取points文件
    JSP语法1
    servlet与SSI
    JDBC连接数据库
    django开发Blog(2)
    django开发Blog(1)
    JSP学习2:useBean动作标签
    django开发Blog(4)
    Servelet基础
    servlet会话管理2
  • 原文地址:https://www.cnblogs.com/hanmengya/p/10858596.html
Copyright © 2020-2023  润新知