gpt4 book ai didi

google-closure - 为什么我的大 bean 模板缺少soyDocs?

转载 作者:行者123 更新时间:2023-12-03 22:22:00 27 4
gpt4 key购买 nike

当我尝试编译此大 bean 模板时,Plovr is引发了编译时异常。

// Copyright 2012 David Faux
/**
* @overview Lays out the home page.
*/

{namespace templates.home}

/*
* Lays out the home page.
*/
{template .main}
<h1>Hi! Welcome to my experimental page.</h1>
<img src="/images/logo.png" alt="" id="homeLogo" />
{/template}

这是引发的错误。
org.plovr.CheckedSoySyntaxException:
template templates.home.main: Not all code is in Soy V2 syntax
(missing SoyDoc for template {template .main}).

为什么我缺少此模板的大 bean 文档?

最佳答案

file structure的关闭模板文档指出:

Precede each template with a SoyDoc comment that explains the purpose of the template, in the same style as JavaDoc.



JavaDoc注释必须以开始注释定界符 /**开头,如如何在 Format of a Doc Comment 下的如何为Javadoc工具编写文档注释所示。

上面的模板示例缺少SoyDoc注释中的第二个星号。它应如下所示:
/**
* Lays out the home page.
*/
{template .main}
<h1>Hi! Welcome to my experimental page.</h1>
<img src="/images/logo.png" alt="" id="homeLogo" />
{/template}

关于google-closure - 为什么我的大 bean 模板缺少soyDocs?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11496430/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com