如果设置 laravel 5,则将 PHP 变量从 GET 传递到当前表单

Passing PHP Variable from GET to current form if isset laravel 5

好的,我搜索了过去几天,但未能找到有意义的答案。我很肯定这是可行的,但不确定我是否无法理解。我是 Laravel 5 的新手,也是 PHP 的新手。我正在尝试将输入的字符串从我的(laravel 集体)表单的 GET['quote'] 部分发送到使用 GET 变量更新的相同表单.基本上在刷新后保留有人在搜索框中输入的任何内容。

通常,如果需要的变量是 "set",我只会回显它;如果它不在文本框的 'value' = "" 部分,则将其留空。在 Laravel 中,如果我理解正确的话,由于在父视图中呈现子视图(首先是父视图,然后是子视图),因此我无法执行此操作。有什么解决办法吗?如果找不到解决方案,我准备在表单中执行旧的回显。

提前致谢!在过去的几个月里,这个网站帮助我解决了很多问题。

父视图上的当前窗体。

{{ Form::open(array('url' => 'search', 'method' => 'get')) }}
{!! Form::text('query', '', [
                    'class' => "form-table",
                    'placeholder' => "Search Keywords",
                    'value' => "{{ $query }}"
                    ]) !!}</td>
{!! Form::submit('Submit') !!}
{{  Form::close() }}

表单下方的代码是将文本框字符串传递给另一个视图并显示在该表单下方。我不知道任何 JS,所以我在这里有点摸索,可能是想做一些行不通的事情。

@yield('child')

下面的代码来自我的控制器。

public function getSearch(){
$title = "Page Title";
$query = "some string"; //This was set to $_GET['query'] but was failing.
return view('pages.search')->with("title", $title)->with("query", $query);

工作代码对于遇到此问题的任何人


表单代码:value = "" 在我的原始表单中的位置也有误,因此我将 $query 放入下面的正确表单数组中。

{{ Form::open(array('url' => 'search', 'method' => 'get')) }}
{{ Form::text('query', $query, [
                    'class' => "form-table",
                    'placeholder' => "Search Keywords",
                    ]) 
}}
{{ Form::submit('Submit') }}
{{  Form::close() }}

页面控制器。 添加到命名空间下方我的控制器的顶部。

use Illuminate\Http\Request;

控制器:

public function getSearch(Request $request){
$title = "Search";
$query = $request->input("query", "");
return view('pages.search', ["title" => $title, "query" => $query]);
}

你很接近,但遗漏了几个关键部分。首先,您需要将请求传递给控制器​​以访问请求。

我强烈建议您在陷入 Laravel 太多之前阅读文档的这一部分。响应和请求是所有后端的核心:

https://laravel.com/docs/5.1/requests https://laravel.com/docs/5.1/responses

控制器

use Illuminate\Http\Request;

public function getSearch(Request $request)
{
    $title = "Page Title";
    $query = $request->input("query", ""); // get the 'query' string, or default to an empty string

    return view('pages.search', [
        'title' => $title,
        'query' => $query,
    ]);
}

查看

{!! Form::open(['url' => 'search', 'method' => 'get']); !!}
{!! Form::text('query', $query, [
                    'class' => "form-table",
                    'placeholder' => "Search Keywords"
                    ]); 
!!}
{!! Form::submit('Submit'); !!}
{!! Form::close(); !!}

首先检查 query 是否有任何值。如果不是,它将 return 一个空字符串作为 input 字段的第二个参数设置为 ''。然后它将在数据库中搜索给定的关键字。

控制器:

public function getSearch(Request $request)
{
    $title = "Page Title";
    if(Input::has('query')){
        $query = Input::get('query');
    }
    $data = DB::table('table_name')->where('column_name','like','%'.$query.'%');

    // or if you use model you can use this
    $data = ModalName::all()->where('column_name','like','%'.$query.'%');

    return view('pages.search', compact('title','data'));
}

Blade:

{!! Form::open(array('url' => 'search', 'method' => 'get')) !!}
{!! Form::text('query', '', [
    'class' => "form-table",
    'placeholder' => "Search Keywords",
    ]) !!}
{!! Form::submit('Submit') !!}
{!! Form::close() !!}

// To view data add the table below search form

<table>
    <tr>
        <th>col1</th>
        <th>col2</th>
        <th>col3</th>
    </tr>
    @foreach($data as $d)
    <tr>
        <td>{{ $d->column_one }}</td>
        <td>{{ $d->column_two }}</td>
        <td>{{ $d->column_three }}</td>
    </tr>
    @endforeach
</table>