gpt4 book ai didi

javascript - Laravel Checkbox 在实时搜索中始终返回 true

转载 作者:行者123 更新时间:2023-12-01 02:56:42 26 4
gpt4 key购买 nike

我的复选框有问题:进行 LIVEsearch 时,复选框的值始终设置为 1/true。当我在正常搜索中执行相同的操作(没有 js 文件)时,我没有这个问题。首先是我的复选框的代码:

{{ Form::checkbox('deleted', '1' , null , array('id' => 'search-deleted'))}}

比我的 javascript 代码(我猜问题是获取复选框的值)

<script>
$(document).ready(function(){
$(".search").keyup(function(){
var staffid= $("#search-staffid").val();
var firstName= $("#search-first-name").val();
var lastName= $("#search-last-name").val();
var birthday= $("#search-birthday").val();
var children= $("#search-children").val();
var deleted= $("#search-deleted").val();
if(staffid == "" && firstName == "" && lastName == "" && birthday == "" && children == "" ) {
$( "#liveResult" ).html("<b>Suchergebnisse werden hier angezeigt</b>");
}else {
$.get( "{{ url('demos/livesearch') }}" +
'?staffid=' + staffid +
'&first_name=' + firstName +
'&last_name=' + lastName +
'&birthday=' + birthday +
'&children=' + children +
'&deleted=' + deleted
, function( data ) {
$( "#liveResult" ).html( data );
});
}
});
});
</script>

正如你所见,我还有一些其他字段,它们工作没有任何问题。最后是我的 Controller 的代码:

public function liveSearch(Request $request)
{
$data = [
'id' => $request->staffid,
'first_name' => $request->first_name,
'last_name' => $request->last_name,
// converts date format only if birthday != null
'birthday' => ($request->birthday ? date('Y-m-d', strtotime($request->birthday)) : null),
'children' => $request->children,
'deleted' => $request->deleted
];

if (is_null($data['id']) && is_null($data['first_name']) && is_null($data['last_name']) && is_null($data['birthday']) && is_null($data['children']))
{
return view('staff.livesearch');
}

else
{
dd ($data['deleted']);
}
}

最佳答案

复选框的始终为1;你真正想知道的是它是否被检查。

// boolean
var deleted = $("#search-deleted").prop('checked');

关于javascript - Laravel Checkbox 在实时搜索中始终返回 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46661578/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com