我正在尝试为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]
};
请帮我找到多个令牌的解决方案
答案 0 :(得分:0)
这个问题解决了 [https://yakmada.github.io/ember-cli-mentionable/dist/][1]
mixedConfig: [
{
values: ['Johnny', 'Syd', 'Steve', 'Paul']
},
{
token: '#',
values: ['noAmpersand', 'atSucks', 'poundThis', 'hashBrowns']
}
],