問題タブ [reason-react]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
2 に答える
1711 参照

reason - ReasonML/ReasonReact でグローバル DOM イベントを処理するには?

ReasonML でグローバル DOM イベントをリッスン/処理する最も慣用的な方法は何ですか?

キーボード イベントをリッスンする必要がある 2048 ゲームの ReasonReact バージョンを作成しています。

標準の JS/React アプリでは、 でイベントをリッスンし、 で同じものをリッスンしcomponentDidMountないライフサイクル メソッドを持つコンポーネントがあります。document.addEventListener("keypress", [my_event_handler])componentWillUnmountdocument.removeEventListener("keypress", [my_event_handler])

Reason/ReasonReact で document.(addEventListener/removeEventListener) にアクセスする最も慣用的な方法は何ですか?