我需要使用带有 elmish 调度的 Fable-React 有状态组件。我不知道如何创建它。
我正在使用这个项目模板:https ://github.com/fable-elmish/templates
这是模型:
module Home.Types
[<Pojo>]
type Model = {
isLoading: bool
}
这是组件:
type Documentation(props) as this =
inherit Component<Documentation.Types.Model,obj>(props)
do
()
override this.componentWillMount () =
printfn "componentWillMount"
**RequestProcessDocumentation |> dispatch <-- this is what I need**
override this.render() =
printfn "render"
let (?) = Fable.Core.JsInterop.(?)
div []
[
p [] [str(this.props.isLoading.ToString())]
button [ OnClick (fun _ -> RequestProcessDocumentation |> dispatch ) ] [str("Click me")]
]
如何使用 ofType 函数创建它,然后我可以像这样使用它:
let pageHtml =
function
| Home -> Home.View.root model.home (HomeMsg >> dispatch)
| Documentation -> documentation (DocumentationMsg >>