我已经使用select2 angular进行自动完成标记它工作得很好但是如果我加载超过4000条记录它会停止执行并阻止网页。
有哪些方法可以解决这个问题,成千上万的记录?
我的代码
HTML
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.5/angular.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/select2/3.4.0/select2.min.js"></script>
<script src="https://rawgithub.com/angular-ui/ui-select2/master/src/select2.js"></script>
<div ng-controller="MyCtrl">
No Results Tag: {{ noResultsTag }}
<br />
<select style="width: 400px;" ui-select2="select2Options" multiple ng-model="selectedTags">
<option ng-repeat="tag in tags" value="{{tag.id}}">{{tag.name}}</option>
</select>
<br /><br />
Tags:
<pre>
{{ tags | json }}
</pre>
</div>
的Javascript
var myApp = angular.module('myApp', ['ui.select2']);
function MyCtrl($scope, $compile, $timeout) {
$scope.noResultsTag = null;
$scope.tags = [
{id: 0, name: "Zero"},
{id: 1, name: "One"},
{id: 2, name: "Two"},
{id: 3, name: "Three"},
{id: 4, name: "Four"},
];
$scope.select2Options = {
formatNoMatches: function(term) {
console.log("Term: " + term);
var message = '<a ng-click="addTag()">Add tag:"' + term + '"</a>';
if(!$scope.$$phase) {
$scope.$apply(function() {
$scope.noResultsTag = term;
});
}
return message;
}
};
$scope.addTag = function() {
$scope.tags.push({
id: $scope.tags.length,
name: $scope.noResultsTag
});
};
$scope.$watch('noResultsTag', function(newVal, oldVal) {
if(newVal && newVal !== oldVal) {
$timeout(function() {
var noResultsLink = $('.select2-no-results');
console.log(noResultsLink.contents());
$compile(noResultsLink.contents())($scope);
});
}
}, true);
}
此示例运行良好的问题是有数千条记录。 要测试http://jsfiddle.net/jld42/4/
答案 0 :(得分:0)
前一段时间我遇到了同样的问题。我们的解决方案是使用AJAX调用加载数据并对结果进行分页。这样可以确保插件不会冻结整个页面,并且可以很快地加载数据。
请查看此处的官方文档:https://select2.github.io/examples.html#data-ajax