fastadmin 中两个下拉selectpage组件同步联动
关于这个问题找了很多方法都不管用,最好还时看了selectpage官方文档才知道的,话不多说直接上代码:
PHP
add: function () {
$(document).on("change", "#c-ditch_id", function () {
$.post("goods/index",{
//搜索条件,上一个selectpage选择完后传过来的id作为此次搜索的条件
custom: {ditch_id: $('#c-ditch_id').val()},
keyField:'id',
showField:'goods_name',
},function(result){
console.log(result);
//刷新数据的关键,我也是看了文档才知道有这么一个方法,动态更改数据源
$('#c-goods_id').selectPageData(result.list);
});
})
Controller.api.bindevent();
},
本文由 我爱PHP169 作者:admin 发表,其版权均为 我爱PHP169 所有,文章内容系作者个人观点,不代表 我爱PHP169 对观点赞同或支持。如需转载,请注明文章来源。