1

我正在尝试导入documentGetElementById函数以用于Reflex FRP. 我尝试了下面的导入,但找不到该功能(根据hackage应该在那里):

GHCi, version 8.0.1: http://www.haskell.org/ghc/  :? for help
[1 of 1] Compiling Main             ( Test.hs, interpreted )
Ok, modules loaded: Main.
*Main> import Graphics.UI.Gtk.WebKit.DOM.Document
*Main Graphics.UI.Gtk.WebKit.DOM.Document> :t documentGetElementById
<interactive>:1:1: error:
   Variable not in scope: documentGetElementById

我将不胜感激帮助解决这个问题。我正在使用ghc 8.0.1webkit 现在工作的 mac 上运行最新的 Reflex 平台构建。我在 Linux 上也看到了同样的问题。因此,它似乎不是特定于平台的。

我也做了github 代码搜索ghcjs-domdocumentGetElementById没有出现。那么,也许它已经转移到其他地方了?

4

1 回答 1

0

documentGetElementById重构getElementById后已重命名为。ghcjs-dom因此,如下所示的导入将起作用:

*Main> import Graphics.UI.Gtk.WebKit.DOM.Document
*Main Graphics.UI.Gtk.WebKit.DOM.Document> :t getElementById 
getElementById
  :: (DocumentClass self, System.Glib.UTFString.GlibString string,
      MonadIO m) =>
     self -> string -> m (Maybe Graphics.UI.Gtk.WebKit.Types.Element)
于 2016-08-23T13:32:47.990 回答