样式@Users和textareas上的#hashtags

时间:2017-12-12 13:19:43

标签: ember.js ember-cli

我正在尝试为hastag添加#,为用户添加@,我在ember中使用下面的包 包:ember-cli-forthable

工作

     let hashTags = {
              token: '#',
              values: hashTagList
            };
    {{mentionable-input config=hashTags value=test placeholder="Add comment here"}}

不工作

let hashTags = {
              token: ['#','@'],
              values: [hashTagList,userList]
            };

请帮我找到多个令牌的解决方案

1 个答案:

答案 0 :(得分:0)

这个问题解决了 [https://yakmada.github.io/ember-cli-mentionable/dist/][1]

mixedConfig: [
  {
    values: ['Johnny', 'Syd', 'Steve', 'Paul']
  },
  {
    token: '#',
    values: ['noAmpersand', 'atSucks', 'poundThis', 'hashBrowns']
  }
],