我正在尝试使用 Fable 编写一个简单的 React 组件。它应该显示一个带有+
和-
按钮的简单计数器。它还string
通过道具接收消息。
出乎意料的是代码可以编译,但会引发运行时错误:
错误:对象作为 React 子对象无效(找到:带有键 {props、context、refs、updater、state} 的对象)。
如果您打算渲染一组子项,请改用数组。
这是代码:
module App
open Fable.Core
open Fable.Core.JsInterop
open Fable.React
open Browser
open Browser.Types
type App (message) =
inherit Component<string, int> (message) with
do
base.setInitState(0)
override this.render () =
div
[]
[
h1 [] [ str (sprintf "%s - %i" this.props this.state) ]
button [ Props.OnClick (fun _ -> this.setState (fun s _ -> s + 1)) ] [ str "+" ]
button [ Props.OnClick (fun _ -> this.setState (fun s _ -> s - 1)) ] [ str "-" ]
]
let render () =
ReactDom.render(
App "Counter",
document.getElementById "root")
render ()
我的paket.lock
:
STORAGE: NONE
RESTRICTION: || (== netcoreapp3.1) (== netstandard2.0) (== netstandard2.1)
NUGET
remote: https://api.nuget.org/v3/index.json
Fable.Browser.Blob (1.1)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.6.2)
Fable.Browser.Dom (1.1)
Fable.Browser.Blob (>= 1.1)
Fable.Browser.Event (>= 1.0)
Fable.Browser.WebStorage (>= 1.0)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.6.2)
Fable.Browser.Event (1.0)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.5.2)
Fable.Browser.WebStorage (1.0)
Fable.Browser.Event (>= 1.0)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.5.2)
Fable.Core (3.1.5)
FSharp.Core (>= 4.7)
Fable.React (5.3.6)
Fable.Browser.Dom (>= 1.0)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.7)
FSharp.Core (4.7)
注意:出于各种原因,我想使用setState
(而不是hooks或Elmish )。