angular ui - select:标记没有多个 - 为什么这不起作用?

时间:2015-05-25 20:23:27

标签: javascript angularjs angular-ui angular-ui-select

我使用以下包

$ bower list
bower check-new     Checking for new versions of the project dependencies..
(...)
├── angular#1.3.15 (1.3.16-build.113+sha.3881831 available, latest is 1.4.0-rc.2)
├─┬ angular-resource#1.3.15 (1.3.16-build.113+sha.3881831 available, latest is 1.4.0-rc.2)
│ └── angular#1.3.15 (latest is 1.4.0-rc.2)
├─┬ angular-route#1.3.15 (1.3.16-build.113+sha.3881831 available, latest is 1.4.0-rc.2)
│ └── angular#1.3.15
├─┬ angular-sanitize#1.3.15 (1.3.16-build.113+sha.3881831 available, latest is 1.4.0-rc.2)
│ └── angular#1.3.15
├─┬ angular-ui-select#0.11.2
│ └── angular#1.3.15 (1.4.0-rc.2 available)
├─┬ bootstrap#3.3.4
│ └── jquery#2.1.4
├── jquery#2.1.4
├── modernizr#2.8.3
└── normalize.css#3.0.3

我有这个angular-ui-select代码

<ui-select
        tagging="createTag"
        ng-model="needs_ingredient.ingredient"
        theme="bootstrap"
        ng-disabled="disabled"
        title="Zutat auswählen">
    <ui-select-match placeholder="Zutat auswählen...">
        {{$select.selected.name}}
    </ui-select-match>
    <ui-select-choices repeat="ingredient in ingredients | filter: {name: $select.search}">
        <div ng-if="ingredient.isTag" ng-bind-html="ingredient.name +' <small>(hinzufügen)</small>'| highlight: $select.search"></div>
        <div ng-if="!ingredient.isTag" ng-bind-html="ingredient.name + ingredient.isTag | highlight: $select.search"></div>
    </ui-select-choices>
</ui-select>

其中,成分列表的一个元素看起来像这样

{
    "id": 123,
    "name": "xyz"
},

和js-code的这部分为列表创建新对象

$scope.createTag = function (newTag) {
    console.log('createTag');

    return {
        id: null,
        name: newTag
    };
};

我希望这是一个列表,我可以选择一个项目或者可以添加一个新项目,但它不起作用。

错误在哪里?标记没有多个选择不起作用?

3 个答案:

答案 0 :(得分:1)

您可以设置:

tagging-label="false"
选择标记中的

对我有用!

答案 1 :(得分:0)

我在angular-ui的github上发现了这个问题。

有人发布了临时解决方法

https://github.com/angular-ui/ui-select/issues/890

答案 2 :(得分:0)

供将来参考,

您可以通过设置

进行单选
    taggingLabel to false.

指令