gpt4 book ai didi

python - Jira Python 自定义字段

转载 作者:太空宇宙 更新时间:2023-11-04 08:41:00 25 4
gpt4 key购买 nike

我正在编写一个脚本来创建错误。我们有很多自定义字段,我不知道如何让它们在 python 代码中正常工作。有人可以帮忙解释一下吗?我已经阅读了尽可能多的文章,但没有一个解决方案有效。

我的自定义字段名称的一个示例是 customfield_15400,默认值为“NO”。我用下面的代码得到的错误是:

response text = {"errorMessages":[],"errors":{"customfield_15400":"Could not find valid 'id' or 'value' in the Parent Option object."}}

代码:

    project_dict = {'Aroid':'SA', 'OS':'SC'}
epic_dict = {'Aroid':'SA-108', 'OS':'SC-3333'}

for index, row in bugs.iterrows():
issue = st_jira.create_issue(project= project_dict[row['OS']], \
summary= "[UO] QA Issue with '%s' on '%s'" % (row['Event Action'], row['Screen Name']), \
issuetype= {'name':'Bug'},\
customfield_15400="No"
)

最佳答案

尝试以下操作:

customfield_15400={ 'value' : 'NO' }

您还可以执行以下操作,value_id 是您选择字段中值的 ID:

customfield_15400={ 'id' : 'value_id' }

实际上,SelectField 的值是一个对象,由其值和 ID 描述。

关于python - Jira Python 自定义字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44853039/

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