要清楚,我只对使用抢劫感兴趣,而不是快照。我正在阅读ocharles的教程(https://ocharles.org.uk/blog/posts/2013-12-11-24-days-of-hackage-heist.html)并尝试调整他的第一个例子。它是一个简单的绑定标记。我的代码如下:
-- main.hs
main :: IO ()
main = billy
billy :: IO ()
billy = do
heistState <- either (error . concat) id <$>
(runEitherT $ initHeist myConfig)
builder <- maybe (error "oops2") fst $
renderTemplate heistState "billy"
toByteStringIO BS.putStr builder
BS.putStr "\n"
myConfig = (set hcNamespace "") $
(set hcInterpretedSplices defaultInterpretedSplices) $
(set hcTemplateLocations [loadTemplates "templates"]) $
emptyHeistConfig
我正在使用的模板:
<bind tag="kiddo">Billy</bind>
Merry Christmas, <kiddo/>!
我得到的输出是:
<bind tag='kiddo'>Billy</bind>
Merry Christmas, <kiddo></kiddo>!
我看不出为什么bind标签不起作用。我实际上已经更新了他的代码以使用新的镜头式抢劫配置,我知道最近在抢劫中引入的命名空间技巧,但我看不出还有什么需要改变以使这个例子有效。< / p>
答案 0 :(得分:1)
以下是我能够开展的工作:
{-# LANGUAGE OverloadedStrings #-}
import qualified Data.ByteString as B
import Blaze.ByteString.Builder (toByteStringIO)
import Control.Applicative
import Control.Monad.Trans.Either (runEitherT)
import Heist
import Heist.Compiled (renderTemplate)
import Control.Lens
heistConfig =
(set hcNamespace "") $
-- (set hcInterpretedSplices defaultInterpretedSplices) $
(set hcLoadTimeSplices defaultLoadTimeSplices) $
(set hcTemplateLocations [loadTemplates "."]) $
emptyHeistConfig
main = do
heistState <- either (error "oops") id <$>
(runEitherT $ initHeist heistConfig)
builder <- maybe (error "oops") fst $
renderTemplate heistState "billy"
toByteStringIO B.putStr builder
显然bind
是加载时间拼接,而不是解释拼接。