工作记录

来源:互联网 发布:法律人工智能十大趋势 编辑:程序博客网 时间:2024/05/21 01:31
今天工作遇到的问题一bbc.getShopList = function(shopName){if(shopName.length < 1)  return;    $.ajax({        type: 'GET',        dataType: 'json',        url: '/helperreply-getShopList.html',        data: {   shopName:shopName      },        success: function(response) {var dataArr = [];            $.each(response.data.shopList,function(i,v){dataArr.push({title:v.shop_name});})$("#workcell").bigAutocomplete({data:dataArr});        }    })}