如何在jira-python中确定自定义字段的名称?
当我检索问题时,我的自定义字段显示为customfield_xxx
我屏幕上的姓名包括'项目','姓名','截止日期'等。 没有在每个字段中放置一个值,然后查看它出现的位置 当我重新阅读这个问题时。
那就是我可以把'一个'在我的一个领域,然后阅读问题,并找到 customfield_10801(或其他)的值为' a'。但是有一般吗? 例如,如果我的自定义字段是'截止日期',哪个是customfield_xxx,则可以找到该方法 是否会映射到?
或者,在JIRA GUI中,我如何查看这些自定义字段#。
答案 0 :(得分:14)
您可以在GUI中看到html代码或网址中的自定义字段ID:
另一种方法是通过REST API:
<强>更新强>
根据评论,可以这样做:
# Fetch all fields
allfields=jira.fields()
# Make a map from field name -> field id
nameMap = {field['name']:field['id'] for field in allfields}
# Fetch an issue
issue = jira.issue('ABC-1')
# You can now look up custom fields by name using the map
getattr(issue.fields, nameMap[custom_name])