添加空格分隔的标签时, ng-tags-input 将用破折号替换空格。我怎样才能保留空格字符?
问问题
2225 次
2 回答
8
我刚刚在文档中找到了相应的指令属性。答案:使用replace-spaces-with-dashes=false
于 2015-06-09T18:38:02.773 回答
2
为了用下划线替换空格,我做了以下事情:
HTML:
<tags-input ng-model="model" replace-spaces-with-dashes="false" on-tag-adding="addingTag($tag)"></tags-input>
JS:
$scope.addingTag = function(tag) {
tag.text = tag.text.replace(/ /g, '_');
return tag;
};
于 2016-01-05T13:05:49.997 回答