且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在一段时间内从Jira REST API获取所有工作日志?

更新时间:2023-09-08 19:15:52

如果找不到符合您要求的即用型功能,我可以考虑其他三种解决方案比你的:

If you can't find the an out-of-the-box function that does what you've asked for, I can think of three other solutions other than yours:

  1. 直接查询数据库,这样您就可以完成工作使用一个查询记录日志.确保不要直接插入/删除/更新数据库,而只是查询它.
  2. 使用类似 Jira脚本套件 Tempo插件
  1. Query the DB directly so you could get the work logs using one query. Be sure not to insert/delete/update the DB directly, but only to query it.
  2. Use something like Jira Scripting Suite or Behaviours Plugin to add scripts that will write the work-logs somewhere on the disk. Then use another app to read the written information from the disk and display it to the users.
  3. Use the Tempo plugin