我正在尝试Yesod
Yesod 网页上记录的书籍示例。示例之一是嵌入在 Wiki 中的 Chat 应用程序。当我在 ghci 中尝试时(Chat
从中加载包含 Wiki 示例代码的模块Wiki.hs
),我收到以下 Chat.hs 错误:
Chat.hs:122:34:
Could not deduce (Text.Julius.ToJavascript Text)
arising from a use of `Text.Julius.toJavascript'
from the context (YesodChat master)
bound by the type signature for
chatWidget :: YesodChat master =>
(Route Chat -> Route master) -> GWidget sub master ()
at Chat.hs:(81,15)-(83,35)
Possible fix:
add an instance declaration for (Text.Julius.ToJavascript Text)
In the first argument of `Text.Julius.Javascript', namely
`Text.Julius.toJavascript output'
In the expression:
Text.Julius.Javascript (Text.Julius.toJavascript output)
In the first argument of `Data.Monoid.mconcat', namely
`[Text.Julius.Javascript
((Data.Text.Lazy.Builder.fromText . Text.Shakespeare.pack')
"\
\// Set up the receiving end\
\var output = document.getElementById(\""),
Text.Julius.Javascript (Text.Julius.toJavascript output),
Text.Julius.Javascript
((Data.Text.Lazy.Builder.fromText . Text.Shakespeare.pack')
"\");\
\var src = new EventSource(\""),
Text.Julius.Javascript
(Data.Text.Lazy.Builder.fromText
(_render_a3Yr (toMaster ReceiveR) [])),
....]'
我对 Yesod 库还不是很熟悉。所以,我被上述错误难住了——我在其他toWidget
调用函数的 Yesod 示例中也看到了这个错误。因此,它似乎与toWidget
功能有关。我将感谢帮助解决上述错误。
我正在ghc 7.6.1
使用yesod 1.1.4.1
.
更新:
按照 Hammar 的建议进行了修复。我在Chat.hs
.
为 rawJS 添加导入语句:
import Text.Julius (rawJS)
跟踪 in 中 #{} 块的所有实例
julius whamlet
,Chat.hs
并将它们替换为{# rawJS ...}
var output = document.getElementById("#{rawJS output}");
var input = document.getElementById("#{rawJS input}");