我正在尝试将我定义为模块的 jiraIssueField 的值作为上下文参数传递到 webPanel 项中。
我在这里定义了模块:
我在 atlassian-connect.json 中将自定义字段引用为 addonkey__customfieldkey(由双下划线分隔)
"modules": {
"jiraIssueFields": [
{
"description": {
"value": "Client email custom field"
},
"type": "string",
"name": {
"value": "Client Email"
},
"key": "email"
}
],
"webPanels": [
{
"key": "profile",
"location": "atl.jira.view.issue.right.context",
"name": {
"value": "Profile"
},
"url": "/profile?clientEmail={addonkey__email}"
}
]
}
但是,传递的值是 NULL。
有什么我想念的吗?webPanel 的 URL 中是否有引用自定义字段的前缀?
感谢你的帮助