本文介绍了是否可以通过Firefox SDK的port.emit()发送函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我尝试通过port.emit发送函数时,它在另一端最终以null结束.如果我将其更改为简单的字符串,则可以正常工作.您不能通过发射发送函数吗?
When I trying to send a function through port.emit it ends up null on the other side. If I change it to a simple string it works fine. Can you not send functions through emit?
self.port.emit("requestBackground", someFunction);
推荐答案
快速浏览 port.emit()
表示:
A quick look at the documentation for port.emit()
indicates:
点击关于它的链接可序列化为JSON 会告诉您:
Clicking on the link about it being serializable to JSON would have told you:
这篇关于是否可以通过Firefox SDK的port.emit()发送函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!