gpt4 book ai didi

confluence - Atlassian Confluence 蓝图向导 - 不存在的大 bean 模板

转载 作者:行者123 更新时间:2023-12-05 05:09:39 26 4
gpt4 key购买 nike

我正在构建一个 confluence 插件,包括带有蓝图的蓝图向导对话框。但是当我尝试加载向导时,浏览器控制台出现 JS 错误,

Uncaught error wizard points to a non-existent Soy template, OutputPlugin.Blueprints.Simple.page1Form'. Check your web-resources or server logs.

我试过的是,

  • 检查服务器日志。没有证据。
  • 已尝试清理并重新安装插件和 SDK。

但是,我已经在 atlassian-plugin.xml 文件中将 soy 添加到网络资源中。

我遵循了 atlassian confluence 插件教程“Write an intermediate blueprint plugin

我正在使用 Confluence 6.14.0 和 atlasisian SDK 8.16.0

atlassian-plugin.xml

<web-resource key="ma2.create_wizard-resources" name="ma2.create_wizard Web Resources">
...
<transformation extension="soy">
<transformer key="soyTransformer">
<functions>com.atlassian.confluence.plugins.soy:soy-core-functions
</functions>
</transformer>
</transformation>

...
<resource type="download" name="outputTemplate.soy.js" location="/soy/outputTemplate.soy" />
</web-resource>

<blueprint key="output-blueprint" content-template-key="output-template" index-key="output-index" i18n-name-key="output.blueprint.name">
<content-template ref="output-template"/>
<dialog-wizard key="outputTemplate-wizard">
<dialog-page id="page1Id"
template-key="OutputPlugin.Blueprints.Simple.page1Form"
title-key="output.blueprint.wizard.page1.title"
description-header-key="test"
description-content-key="test1"
last="true"/>
</dialog-wizard>
</blueprint>

outputTemplate.soy

{namespace OutputPlugin.Blueprints.Simple}
/**
* A form that accepts a person's name
*/ 
{template .page1Form}
<form action="#" method="post" class="aui">
<fieldset>
<div class="field-group">
<label for="contentvar">{getText('output.blueprint.form.label.title.vName')}</label>
<input id="contentvar" class="text" type="text" name="contentVar">
</div>
</fieldset>
</form>
{/template}

最佳答案

终于找到解决办法了。第一个问题是我的服务器控制台没有记录必要的日志。只有java jdk和同步日志。所以我按照this confluence support page中提到的配置日志拥有“com.atlassian.confluence.core”的所有日志。然后发现错误

[INFO] [talledLocalContainer] com.atlassian.soy.impl.QuieterSoySyntaxException: In file /soy/outputTemplate.soy: End of SoyDoc not at end of line [line 4, column 1].

最后的问题是大 bean 文档结束后的空格

/**
* A form that accepts a person's name
*/{space}

代替

/**
* A form that accepts a person's name
*/

关于confluence - Atlassian Confluence 蓝图向导 - 不存在的大 bean 模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57423384/

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