如何将下拉“{{selected}}”值分配给`<tags-input ng-model =“tags”>`

时间:2015-07-17 05:22:17

标签: html angularjs angularjs-scope angularjs-ng-repeat

而不是在标记输入内输入用户可以从下拉列表中选择值,而{{selected}}值应分配给{{tags}},以便创建相应的标记。

这是工作Jsfiddle

2 个答案:

答案 0 :(得分:0)

在您的选择输入上添加ng-change="someFunc()"

$scope.someFunc = function() {
  $scope.tags.push('tag object to add');
}

答案 1 :(得分:0)

最后我明白了。

<auto-complete source="loadTags()" load-on-focus="true"
                 load-on-empty="true"></auto-complete>

将提供与选择标记相同的功能。