zoukankan      html  css  js  c++  java
  • laravel 表单接收

    POST方式接收

    视图层

    <form action="/submit" method="post">
      {{csrf_field()}}    //必加
      <input type="text" name="a"></input>
      <input type="text" name="b"></input>
      <input type="text" name="c"></input>
      <input type="submit"></input>
    </form>

    路由设置

    Route::post('/submit','控制器@方法');

    方法接收

    $input=Request::all();  //接收form里的所有值
    echo $input['a'];
    echo $input['b'];
    echo $input['c'];

    GET方式接收

    <form action="/submit" method="get">
      {{csrf_field()}}    //必加
      <input type="text" name="a"></input>
      <input type="text" name="b"></input>
      <input type="text" name="c"></input>
      <input type="submit"></input>
    </form>

    路由设置

    Route::get('/submit','控制器@方法');

    方法接收

    $input=Request::all();  //接收form里的所有值
    echo $input['a'];
    echo $input['b'];
    echo $input['c'];

    注:接收数据的控制器头部的 use IlluminateHttpRequest;一定要替换成use Request; 不然会报以下错误

    Non-static method IlluminateHttpRequest::all() should not be called statically

  • 相关阅读:
    timeDate.js 插件优化
    向页面中插入不同格式的时间(timeDate.js)
    html
    html
    html
    html
    three.js
    three.js
    three.js
    python之路_头像预览、each循环及form组件校验验证码
  • 原文地址:https://www.cnblogs.com/lcxin/p/10790935.html
Copyright © 2011-2022 走看看