绑定库:返回非类型化对象 - 方法定义



我尝试绑定的库的一部分返回一个对象 -

Editor.prototype.getHandlers = function() {
  return {
    'shape.append': require('./draw/AppendShapeHandler'),
    'shape.create': require('./draw/CreateShapeHandler')
  };
};

我无法弄清楚的是如何将类类型指定为返回的对象是匿名的:

class type editor = object
  method getHandlers : ? Js.t Js.opt Js.meth
end

谁能在这里提出前进的道路?

谢谢

缺口

对于这种情况,可能是这样的:

class type editor = object
  method getHandlers : <shape_append : Js.js_string Js.t Js.meth> Js.t Js.meth
end

更多例子:

class type server = object
  method listen : int -> (unit -> unit) Js.callback -> unit Js.meth
  method close : (unit -> unit) Js.callback -> unit Js.meth
  method address :
            <address: Js.js_string Js.t Js.readonly_prop;
             family : Js.js_string Js.t Js.readonly_prop;
             port: Js.js_string Js.t Js.readonly_prop> Js.t Js.meth
end
这种

以这种方式绑定的方法有效,但正如我在 OCaml nodejs 绑定中学到的那样,最好在更高层次上编写而不是执行这些绑定。 https://github.com/fxfactorial/ocaml-nodejs(查看早期的 git 历史,了解更多类似的例子)

相关内容

  • 没有找到相关文章

最新更新