angularjs – 尝试在标记模式(非简单标记)中使用角度ui-select2,丢失对象

前端之家收集整理的这篇文章主要介绍了angularjs – 尝试在标记模式(非简单标记)中使用角度ui-select2,丢失对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我最近从1.1.4升级到1.2.9,并抓住了最新的ui-select2指令和最新的select2组件.标签模式下的select2s已停止工作.选项列表和预先输入工作,但当我从中选择任何内容时,新标记显示为没有任何值的空白内容,并对其进行调试,我看到它正在从{text:“foo”,id:10}切片低至10 – 对象正在被id替换.我真的很感激有关为什么会发生这种情况的任何见解.

演示:http://plnkr.co/edit/RepMSFQsIPDuPTNFWKUN?p=preview

这是我的select2选项:

.controller('AppController',function($scope) {
  availableTags = [
    {text: 'Apple',id: 1},{text: 'Apricot',id: 2},{text: 'Avocado',id: 3},];
  $scope.select2Options = {
    tags: availableTags,multiple: true,minimumInputLength: 1,formatResult: function (item) {
        return item.text;
    },formatSelection: function (item) {
        return item.text;
    },}
神圣的牛,马特/无限回答了我关于github问题的问题:

https://github.com/angular-ui/ui-select2/issues/144#issuecomment-33287882

I had this same behavior and was able to correct it by changing the input type to
"hidden". See if that works for you.

    -matt

这完全解决了它.

原文链接:https://www.f2er.com/angularjs/140968.html

猜你在找的Angularjs相关文章