礼物。
我正在尝试从自身调用索引视图,以查找人员并在左侧显示结果。
但是当我调用视图并发送数据时,它总是为null,请您给我一个提示。我什至调用了store函数,请求始终为空。
应该是获取请求对象的模式窗口吗?如果要在显示窗口时显示该怎么办?
我的路线
Route::get('registroaccesos/destinationSearchGet/', 'RegistroAccesosController@destinationSearchGet')->name('registroaccesos.destinationSearchGet');
Route::post('registroaccesos/destinationSearchPost/', 'RegistroAccesosController@destinationSearchPost')->name('registroaccesos.destinationSearchPost');
控制器
public function destinationSearchGet(){
$headData = array('pageTitle' => 'Admin Home - View all destinations');
return view('registroaccesos.index', $headData);
}
public function destinationSearchPost(Request $request){
$headData = array('pageTitle' => 'Admin Home - Search results');
$formData = $request->input('strPatron');
dd($formData);
// $data = ParentRegionList::destinationSearch($formData);
return view('registroaccesos.index', $headData);//->with(compact('data'))
}
视图
视图的部分代码
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
<span>Acciones</span>
<a class="d-flex align-items-center text-muted" href="#">
<span data-feather="plus-circle"></span>
</a>
</h6>
<div class="form-group">
<label for="strSearch" class="col-form-label">Patrón de búsqueda</label>
<select name="strSearch" class="form-control">
<option value="1" selected> Código del usuario</option>
<option value="2" > Nombre del usuario</option>
</select>
</div>
<div class="form-group">
<input placeholder="Patrón de búsqueda"
id="strPatron"
required
name="strPatron"
spellcheck="false"
class="form-control"
value="Valor"
/>
</div>
<button class="btn btn-sm btn-outline-secondary"
onclick="
event.preventDefault();
document.getElementById('search-form').submit();
"
>Buscar</button>
<form id="search-form" action="{{ route('registroaccesos.store','el resultado' ) }}" method="POST" style="display: none;">
<!-- <input type="hidden" name="_method" value="delete">-->
{{ csrf_field() }}
</form>
结果
答案 0 :(得分:0)
您的<input>
不在您的<form>
中,因此名称为“ strPatron”的dd($request->all())
不会被提交。您需要将所有输入元素包含在表单中,否则它们将不会与POST请求一起发送。
您现在所拥有的方式仅是提交表单中的CSRF字段。您可以通过在控制器中执行Components
└ App.js
└ Layouts
└ Header.js
└ Sidebar.js (this is a Header.js child)
└ Navigation.js (this is a Sidebar.js child)
└ Footer.js (this is a Sidebar.js child)
来进行检查。