1

我的插件中有两个大豆模板,其中一个加载正常,但另一个没有加载 500 内部服务器错误。我从控制台附加错误。

在此处输入图像描述

在此处输入图像描述

这是我的代码:

    {namespace JIRA.Templates.Impacttemplate.ImpactRow}

/**
 * Render the information page for the Requirement Template.

 * @param actor : string
   @param impact: string
 *

 */

{template .renderImpactRow}

<tr class="impact-soy" data-key="{$impact}" >

    /*<td><a href="#" id="button"><span class="key">{$productName}</span></a></td>*/
    <td><span class="key">{$impact}</span></td>
    <td><span class="name">{$actor}</span></td>

</tr>
{/template}
4

1 回答 1

0

最后我可以找出解决方案:

soy doc 注释后不应有空行。

@param impact: string should be like @param impact : string

这是实际的工作代码:

/**
 * Render the impact.
 * @param new_actor : string
 * @param impact : string
 */
{template .renderImpactRow}
<tr class="impact-soy" data-key="{$impact}" >

    <td><span class="key">{$impact}</span></td>
    <td><span class="name">{$new_actor}</span></td>
</tr>
{/template}
于 2015-07-17T12:52:29.403 回答