如何在 Konva 舞台上的 Ionic v3 应用程序上显示表情符号?

How can I show emojis on Ionic v3 application on Konva stage?

我正在尝试使用 Ionic v3 制作类似于 Instagram 故事的内容,并且我正在使用 KonvaJS 处理图像 manipulation/canvas 相关内容等

我想做的是在 Konva canvas 上添加表情符号作为文本。我怎样才能做到这一点?我试图将 Unicode 字符添加到 Konva.Text 的文本属性,但它们没有用。

直接插入表情符号就可以了:

const text = new Konva.Text({
  x: 10,
  y: 19,
  text: ''
});
layer.add(text);

https://jsbin.com/wenaqeloju/1/edit?html,js,output