ng-tags-input,将标签数据存储为字符串数组

ng-tags-input, storing tags data as a string array

我正在使用 ng-tags 输入,填充一行后我得到的数据是一个对象数组,每个对象都有一个 'text' 字符串字段,就像这样

[{"text":"egon"},{"text":"peter"},{"text":"raymond"},{"text":"winston"}]

有没有办法将数据存储为字符串数组?喜欢

["egon", "peter", "raymond", "winston"]

ngTagsInput 仅适用于对象数组。不过,您可以轻松地从对象数组中提取字符串数组:

$scope.tagsString = $scope.tags.map(function(tag) { return tag.text; });

更新

花了一些时间,但 ngTagsInput 现在提供 basic support for array of strings。从 v3.2.0 开始,以下是可能的:

<tags-input ng-model="tags" use-strings="true"></tags-input>

Plunker

我想迟到总比不到好。