如何在三个不同的源中显示预先输入

时间:2017-01-27 10:15:00

标签: javascript angularjs typeahead.js bootstrap-typeahead twitter-typeahead

在bootstrap tpeahead中,我们使用uib-typeahead="lis for lis in product($viewValue)"

我需要在a,b数组前面的类型中显示三个分区,总是显示在前面

我有三个不同的来源,始终显示在源下

var a=['a','b','c'];
var b=['A','B','C'];

JS:

    $scope.product = function(val) {
            return $http.get('', {
                params : {
                    stk : val
                }
            }).then(
                    function(response) {
                        var a=['a','b','c'];
                        var b=['A','B','C'];
                        if (response.links) {
                            $("[uib-typeahead-popup].dropdown-menu").css('display','block');
                            return response.links
                                    .map(function(item) {
                                        return item.lis;
                                    });
                        };

0 个答案:

没有答案