gpt4 book ai didi

gitlab - 创建新的合并请求线程时引用的 GitLab line_code 是什么

转载 作者:行者123 更新时间:2023-12-03 14:46:29 29 4
gpt4 key购买 nike

我正在尝试使用以下端点使用 GitLab api 在文件的特定行上创建关于合并请求的讨论笔记:https://docs.gitlab.com/ee/api/discussions.html#create-new-merge-request-thread
部分有效载荷要求提供 line_code

属性
类型
必需的
描述


位置[line_range][开始][line_code]
字符串
是的
起始行的行代码


当我发出 POST 时,我收到以下回复:

    "message": "400 (Bad request) \"Note {:line_code=>[\"can't be blank\", \"must be a valid line code\"], :position=>[\"is incomplete\"]}\" not given"
这是什么 line_code ?它是某种计算值吗?这里的文档相当模糊。
当我针对 merge_request 上的所有当前注释发出 GET 时,我可以看到一些注释包含此 line_code (见下文)。我试图弄清楚如何为新笔记创造值(value)。
 {
"id": 89,
"type": "DiffNote",
"body": "4",
"attachment": null,
"author": {
"id": 6,
"name": "brian c",
"username": "bc",
"state": "active",
"avatar_url": "https://www.gravatar.com/avatar/f590a9cf57136732dd0cb5z9b1563390?s=80&d=identicon",
"web_url": "http://gitlab.mycompany.us/thisIsMe"
},
"created_at": "2021-01-11T21:46:23.861Z",
"updated_at": "2021-01-11T21:46:23.861Z",
"system": false,
"noteable_id": 21,
"noteable_type": "MergeRequest",
"position": {
"base_sha": "3bf8094f0d54fc70a66698bd582f25c77243de3b",
"start_sha": "3bf8094f0d54fc70a66698bd582f25c77243de3b",
"head_sha": "a10e73cf84eae38286df56f4b58fa221d7eefc44",
"old_path": "b.txt",
"new_path": "b.txt",
"position_type": "text",
"old_line": null,
"new_line": 4,
"line_range": {
"start": {
"line_code": "aceba96ffdf13ce4cd4171c0248420cc03108ef0_0_4",
"type": "new",
"old_line": null,
"new_line": 4
},
"end": {
"line_code": "aceba96ffdf13ce4cd4171c0248420cc03108ef0_0_4",
"type": "new",
"old_line": null,
"new_line": 4
}
}
},
"resolvable": true,
"resolved": false,
"resolved_by": null,
"confidential": false,
"noteable_iid": 3,
"commands_changes": {}
},

最佳答案

线路代码是hash of the file name + underscore + old line number + underscore + new line number文档是错误的。 line_code仅当您使用 position.line_range 时才需要这仅用于添加跨越多行差异的差异注释。你不需要处理line_code用于单行差异注释。所以它不是必需的参数。您可以使用 position.old_lineposition.new_line .

关于gitlab - 创建新的合并请求线程时引用的 GitLab line_code 是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65926187/

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