如何在play框架中设置元数据?

时间:2014-02-13 15:01:41

标签: metadata playframework-1.x

我正在使用play框架1.2.6,似乎无法找到在html页面中设置元数据描述的便捷方法。要设置标题,请执行以下操作:

#{set title:'This is the title' /}

生成

<title>This is the title</title>

是否有类似的东西可以产生这个:

<meta name="description" content="This is the description">

1 个答案:

答案 0 :(得分:0)

实际上,它比我想象的容易得多。我刚修改了header.html中的这部分代码:

<meta name="description" content="#{get 'description' /}">

然后在扩展header.html的页面中:

#{set description:'This is the description' /}