当前位置: 首页 > 工具软件 > Scalate > 使用案例 >

springmvc+scalate(jade) 使用layout

阎宝
2023-12-01

首先定义布局模版

-@ val body:String=""
-@ val title:String="Title"
-@ val script:String=""

!!! 5
html(lang="en")
  head
    title= title
    meta(charset="UTF-8")
    link(rel="stylesheet" href="/assets/lib/bootstrap/css/bootstrap.min.css" type="text/css")
  body
    !=body
    script(type="text/javascript" src="/assets/lib/jquery-1.11.0.min.js")
    script(type="text/javascript" src="/assets/lib/bootstrap/js/bootstrap.min.js")
    !=script

使用布局的页面

- attributes("title")="Index"
- attributes("layout")="/WEB-INF/scalate/layout.jade"
- attributes("script")=capture
  script(src="/assets/pages/index.js")

.container

在SpringMVC的方法:

  @RequestMapping(value = Array("/index"), method = Array(RequestMethod.GET))
  def htmlToJade() = {
    "layout:index"
  }

这里要用layout作为前缀,否则布局模版不起作用


 类似资料: