我尝试使用ajax请求基于另一个字段中填充的值在字段上实现EasyAutoComplete插件。
我有一个customerid
字段,当它的值发生变化时,我希望productname
字段使用EasyAutoComplete插件显示与该customerid
相关的所有产品。
这是我到目前为止所做的:
$('#customerid').on('change',function() {
var products2 = {
url: function(phrase) {
return "database/FetchCustomerProducts.php";
},
ajaxSettings: {
dataType: "json",
method: "POST",
data: {
dataType: "json"
}
},
preparePostData: function(data) {
data.phrase = $("#customerid").val();
return data;
},
getValue: "name",
list: {
onSelectItemEvent: function() {
var value = $("#productname").getSelectedItemData().id;
$("#productid").val(value).trigger("change");
},
match: {
enabled: true
}
}
};
$("#productname").easyAutocomplete(products2);
});
FetchCustomerProducts.php的内容:
if(!empty($_POST["customerid"])){
$products = $app['database']->Select('products', 'customerid', $_POST['customerid']);
echo json_encode(['data' => $products]);
}
然而它无法正常工作。该代码基于' Ajax POST'在this页面上找到的示例。
答案 0 :(得分:3)
你可以使用元素选择类别add是类“check_catogory” 使用事件后点击元素选择获取值是选项,继续发送id到ajax并在文件php中,你可以得到$ _POST ['id']或$ _GET ['id'],选择find数据库,在echo json_encode
$("#customerid").change(function(){
var id = $(this).val();
if(id!=""){
$.ajax({
url:"database/FetchCustomerProducts.php",
type:"POST",
data:{id:id},
dataType: "json",
cache:false,
success:function(result){
var options = {
data:result,
getValue: "name",
list: {
onSelectItemEvent: function() {
var value = $("#productname").getSelectedItemData().id;
$("#productid").val(value).trigger("change");
},
match: {
enabled: true
}
}
};
$("#productname").easyAutocomplete(options);
}
})
}
});