我正在使用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">
答案 0 :(得分:0)
实际上,它比我想象的容易得多。我刚修改了header.html中的这部分代码:
<meta name="description" content="#{get 'description' /}">
然后在扩展header.html的页面中:
#{set description:'This is the description' /}