我目前正在创建一个带有“自动完成”功能init的Wordpress模板,该代码如下所示。目前我的自动完成功能无法正常工作,也没有显示任何内容。检查系统,它给了我......
Uncaught ReferenceError: request is not defined
我最近有一个自动完成功能,但它无法使用自动完成功能键盘向上,向下并输入功能。它可以使用鼠标,但不能使用键盘功能。它是在wordpress模板上,它现在只是由鼠标控制。另一个关键因素是它是“POST”而不是“GET”。另一个关键因素是我有一个隐藏的输入字段,其id被称为“search-id”。 “search-id”的隐藏输入字段与id一起更新并发送到服务器,而“搜索框”输入字段只显示用户的完整描述,但如果值为,我可能不需要它我们发送的只是id。可以在HTML和PHP中看到...请帮助我的自动完成功能无法正常工作?
JQuery UI / AJAX
<script>
$(document).ready(function(){
$("#search-box").autocomplete({
minLength: 2,
source: function(request, response){
$.ajax({
type: "POST",
url: "autocomplete.php",
data:'keyword=' + req.term,
success: response,
dataType: 'json',
minLength: 2,
delay: 100
});
},
select: function(event, ui){
$("#search-box").val(ui.item.label);
$("#search-id").val(ui.item.value);
return false;
}
});
});
/* function selectCountry(val) {
$("#search-id").val(val);
$("#suggesstion-box").hide();
}
function updateSearchBox(el) {
$("#search-box").val($(el).html());
} */
</script>
HTML
<form role="search" name="remarks_lookup" id="myForm" method="post" class="search-form" action="remarks-look-up" >
<div style="background-color:#ffffff; width:100%; float:left; padding-bottom:25px; clear:both; ">
<div class="frmSearch " style="width:80%; float:left;" >
<label>
<input type="search" name="jurisdiction_search" id="search-box" placeholder="Enter County, City, or Client Name" autocomplete="off" />
<input type="hidden" name="search" id="search-id" />
<div class="box" id="suggesstion-box"></div>
</label>
</div>
<div style="width:20%; float:left; clear:right;">
<label>
<input style="width:100%; height: 50px;" type="submit" value="<?php echo esc_attr_x( 'Search', 'submit button' ) ?>" />
</label>
</div>
</div>
</form>
Autocomplete.php
<?php
include_once "functions.php";
if(isset($_POST['keyword']))
{
$database = lookup_connectToDatabase();
$result = pg_query($database, "SELECT country, id, state FROM customers WHERE country iLIKE '" . $_POST["keyword"] . "%' OR id iLIKE '" . $_POST["keyword"] . "%' ORDER BY country");
if (!$result){
echo "<div class='show' align='left'>No matching records.</div>";
}else {
while($row=pg_fetch_assoc($result)){
$array[] = array(
'label' = $row['id'].': '.$row['country'].', '.$row['state'],
'value' = $row['id'],
);
}
echo json_encode ($array);
}
}
?>
总的来说,我想要完成的是能够使用键盘功能(如向上和向下箭头,甚至点击输入建议框,然后让搜索ID输入字段显示描述,他们有再次按Enter键,它会将search-id发送到服务器。
过去一个月我一直在研究这个问题,试图找出修复自动完成功能的不同方法。我是JSON,JQuery-UI和Ajax的新手。我确实需要任何人的帮助才能在我的网站上完成此功能。请帮忙!
如果您愿意提供帮助并希望仔细查看代码甚至进行测试,请告知我们。我想要任何可能的帮助来完成这个自动完成功能。
答案 0 :(得分:0)
想出来......我的答案如下......
JQuery UI
<script>
$(document).ready(function(){
$("#search-box").autocomplete({
minLength: 2,
source: function(request, response){
$.ajax({
type: "POST",
url: "autocomplete.php",
dataType: "json",
data:'keyword=' + request.term,
success: function(data){
response(data);
}
});
},
select: function(event, ui){
$("#search-box").val(ui.item.label);
$("#search-id").val(ui.item.value);
return false;
}
});
});
</script>
HTML
<form role="search" name="remarks_lookup" id="myForm" method="post" class="search-form" action="/VCSWeb/remarks-look-up/" >
<div style="background-color:#ffffff; width:100%; float:left; padding-bottom:25px; clear:both; ">
<div class="frmSearch " style="width:80%; float:left;" >
<label>
<input size="59" maxlength="75" type="search" name="jurisdiction_search" class="search_keyword" id="search-box" placeholder="Enter Jurisdiction, County, City, or Client Name" />
<input type="hidden" name="search" id="search-id" />
</label>
</div>
<div style="width:20%; float:left; clear:right;">
<label>
<input class="search_button" style="width:100%; height: 50px;" type="submit" value="<?php echo esc_attr_x( 'Search', 'submit button' ) ?>" />
</label>
</div>
</div>
</form>
PHP
<?php
if(isset($_POST['keyword']))
{
$database = lookup_connectToDatabase();
$result = pg_query($database, "SELECT country, id, state FROM customers WHERE country iLIKE '" . $_POST["keyword"] . "%' OR id iLIKE '" . $_POST["keyword"] . "%' ORDER BY country");
if (!$result){
echo "<div class='show' align='left'>No matching records.</div>";
}else {
while($row=pg_fetch_array($result)){
$array[] = array(
'label' => '('.$row['id'].') '.$row['country'].', '.$row['state'],
'id' => $row['country'].', '.$row['state'],
'value' => $row['id'],
);
}
echo json_encode ($array);
}
}
?>