有关如何将自定义粘贴事件添加到Ember应用程序的详细记录。请参阅custom events中详述的How to listen to a paste event on a textarea in emberjs。
我的问题是如何在我写的Ember插件中实现这一目标?因为我没有看到Ember.Application.create
?
答案 0 :(得分:0)
我认为这应该进入你的插件index.js文件的included
钩子。
包含的钩子将接收应用程序作为参数,然后您应该能够设置它的customEvents属性,如:
// index.js
module.exports = {
name: 'your-addon',
included: function(app, parentAddon) {
app.customEvents = {
paste: "paste"
}
}
};