作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前我的应用程序中有一条路线,如下所示:
getBookmarksR :: Handler Html
getBookmarksR = do
defaultLayout $ do
setTitle "Bookmarks"
addScript $ StaticR js_jquery_1_10_2_js
addScript $ StaticR js_handlebars_1_1_2_js
addScript $ StaticR js_ember_1_2_0_js
addScript $ StaticR js_ember_data_js
$(widgetFile "bookmarks")
它包括 ember 及其依赖项。
所以现在我想使用 Yesod 的 Julius 开发其余的 javascript。但目前我唯一可以使用的文件是 templates/bookmarks.julius,因为它是由 $(widgetFile "bookmarks") 自动加载的
那么我如何集成多个 julius 文件以在多个文件之间拆分我的代码?
最佳答案
您可以使用:
toWidget $(juliusFile "templates/foo.julius")
但很多时候,我只会使用 $(widgetFile "foo")
。如果没有 foo.hamlet
、foo.lucius
或 foo.cassius
文件,结果相同。
关于javascript - 如何在一个页面中包含多个 julius 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20751288/
我是一名优秀的程序员,十分优秀!