我对纯脚本和卤素完全陌生。当一个 html 元素存在时,我试图显示一个卤素组件(myButton),否则什么也不做。
displayButton :: Eff (HA.HalogenEffects ()) Unit
displayButton = HA.runHalogenAff do
containerElement <- HA.selectElement (QuerySelector "#halogen-button")
case containerElement of
Nothing -> ???
Just element -> runUI myButton unit element
我不知道在Nothing子句中放入什么代码,以便我的代码类型检查并且在这种情况下什么也不做。