我使用emojiarea制作带有表情符号支持的textarea。当我用表情符号键入消息并发送它时,它使用表情符号名称,如:smile:但我想用twemoji中的代码替换此名称。所以问题是要找到一个文件或其他东西,我可以在那里找到所需的替代品。 请问,任何想法?谢谢!
答案 0 :(得分:1)
您可以查看gemoji project,其中包含表情符号here的json数据库。
对于数据库中的每个条目,“别名”字段必须由“表情符号”字段替换。
[
{
"emoji": ""
, "description": "smiling face with open mouth and smiling eyes"
, "aliases": [
"smile"
]
, "tags": [
"happy"
, "joy"
, "pleased"
]
}
, {
"emoji": ""
, "description": "smiling face with open mouth"
, "aliases": [
"smiley"
]
, "tags": [
"happy"
, "joy"
, "haha"
]
}
// Etc.
]