我正在使用ActsAsTaggableOn
gem。如何为标记列表指定多个分隔符?
我试过了:
ActsAsTaggableOn::TagList.delimiter = [',', ' ', '\|']
但这会产生错误:
ActionView::Template::Error (undefined method `ends_with?' for [",", " ", "\\|"]:Array)
非常感谢任何帮助。
答案 0 :(得分:1)
只需设置ActsAsTaggableOn.delimiter = [',', ' ', '\|']
请点击此处了解详情:https://github.com/mbleigh/acts-as-taggable-on#configuration