1.引入文件
'/select2.css', '/select2-bootstrap.css', '/select2.min.js',
‘/angular-select2.min.js’
2.页面
3.html
//dataList是从接口请求来的数据 , modelName是多选的变量值
4.js
$scope.getSelectDataList = function () { var url = "/xxx/xxxx.do"; $http.get(url).success(function(res){ if(res.code==1){ $scope.dataList = res.data.dataList; //取值 }else{ //... }; }).error(function(){}); }; $scope.getSelectDataList();
$scope.dataList=['11111','101920'];//赋值