也许之前问过,我不知道。我用本地搜索数组实现bootstrap typehead search.php
,一切正常,所以我需要在单独的文件$('#state').typeahead({
local: [
<?php
$resultState=$objGeneral->GetStates();
while($rowStates=$resultState->fetch_array(MYSQLI_BOTH))
{
echo "'".$rowStates[1]."',";
}
?>
]
});
$('.tt-query').css('background-color','#fff');
中创建这个数组这是我的本地搜索数组代码
<script>
$(document).ready(function(){
$("#state").typeahead({
name : 'state',
remote: {
url : 'search.php'
}
});
});
现在我想要体现这个PHP代码并调用throgh ajax,我试试这段代码但不适合我
seach.php
在$objGeneral=new General();
$resultStates=$objGeneral->GetStates();
while($rowStates=$resultStates->fetch_array(MYSQLI_BOTH))
{
$State[]=$rowStates['name'];
}
echo json_encode($State);
json数组中看起来像这样
{{1}}