例如,我有一个类似 es6的类:
class Foo {...}
我想扩展它:
class Bar extends Foo {...}
在reason-react文档中,我找到了示例,但我不确定它是否适合我:
let component = ReasonReact.reducerComponent "TodoAppRe";
let make _children => {
...component,
initialState: fun () => {count: 0},
<...>
但是当我尝试用这种风格编写代码时,我得到一个错误:
let myclass unit => {
...mysuperclass,
hello: fun () => {
Js.log "FooBar";
}
};
错误:未绑定记录字段更新
(在这个例子mysuperclass
中是来自 3rd-party js-library 的外部)。
也许我做错了什么?