如何将匿名函数的对象传递给另一个对象?

How to pass an object of anonymous functions to another object?

我正在尝试创建一组关联数组中的回调函数,然后将其保存到另一个场景图形对象的接口字段。

但是访问同一个对象中的interface字段时,提示函数无效

对象 1:

callbacks = {
    afterchildcreatecallback: function ()
      print "THIS IS A CALLBACK FUNCTION"
      return 1
    end function
  }

  m.contentReader = createObject("roSGNode", "ContentReader")
  m.contentReader.observeField("content", "setLists")
  m.contentReader.contenturi = "pkg:/data/contentLists/" + settingFocused.id + "Data.xml"
  m.contentReader.callbacks = callbacks
  m.contentReader.control = "RUN"

对象 2:

<component name = "ContentReader" extends = "Task" >
  <script type = "text/brightscript" uri="pkg:/components/taskRunners/contentReader.brs"></script>

  <interface>
    <field id = "contenturi" type = "uri"></field>
    <field id = "content" type = "node"></field>
    <field id = "callbacks" type = "assocarray"></field>
  </interface>

</component>

访问对象 2 中的回调字段时,我可以看到添加的对象,但其中定义的函数无效。

这是允许的吗?或者我是否必须通过 setter 方法传递函数?

您不能将函数存储在接口关联数组字段中。这是 BrightScript 的限制或设计功能。 如果您想使用侦听器回调模式,您仍然可以通过 callFunc().

使用接口函数来实现

YourNode.xml

<component name="YourNode" extends="Node">
  <interface>
    <function name="myCallback"/>
  </interface>
</component>

YourNode.brs

sub init()
  m.contentReader = createObject("roSGNode", "ContentReader")
  m.contentReader.listener = m.top
  (...)
end sub

sub myCallback(params)
  ?"params "params
end sub

ContentReader.xml

<component name="ContentReader" extends="Task">
  <interface>
    (...)
    <field id="listener" type="node"/>
  </interface>
</component>

ContentReader.brs

sub onTaskDone()
  params = ...
  m.top.listener.callFunc("myCallback", params)
end sub

此外,请确保在完成后 "release" 监听器引用,您可以从 YourNode 开始执行 m.contentReader.listener = invalid。这样可以避免循环引用引起的内存泄漏。