Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
スペースで区切られたタグを追加すると、ng-tags-input はスペースをダッシュに置き換えます。代わりにスペース文字を保持するにはどうすればよいですか?
スペースをアンダースコアに置き換えるために、次のことを行いました。
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; };