gpt4 book ai didi

module - jq中调用自定义模块的格式是什么?

转载 作者:行者123 更新时间:2023-12-05 07:27:30 24 4
gpt4 key购买 nike

我需要使用 jq 对 json 结构中的字符串进行 url 解码。我在 ~/.jq/urldecode.jq 下定义了一个自定义模块,但是在调用它时:

jq '.http.referrer | url_decode::url_decode' file.json

我收到错误信息:

jq: 1 compile error

模块源码为:

def url_decode:
# The helper function converts the input string written in the given
# "base" to an integer
def to_i(base):
explode
| reverse
| map(if 65 <= . and . <= 90 then . + 32 else . end) # downcase
| map(if . > 96 then . - 87 else . - 48 end) # "a" ~ 97 => 10 ~ 87
| reduce .[] as $c
# base: [power, ans]
([1,0]; (.[0] * base) as $b | [$b, .[1] + (.[0] * $c)]) | .[1];

. as $in
| length as $length
| [0, ""] # i, answer
| until ( .[0] >= $length;
.[0] as $i
| if $in[$i:$i+1] == "%"
then [ $i + 3, .[1] + ([$in[$i+1:$i+3] | to_i(16)] | implode) ]
else [ $i + 1, .[1] + $in[$i:$i+1] ]
end)
| .[1]; # answer

什么是正确的语法?

最佳答案

理论上,根据您的设置,您应该能够按照以下方式调用 jq

jq 'import "urldecode" as url_decode;
.http.referrer | url_decode::url_decode' file.json

或者更简单地说:

jq 'include "urldecode";
.http.referrer | url_decode' file.json

但是,在某些情况下理论并不完全适用。在这种情况下,jq 1.5 和 1.6 可以使用以下解决方法:

(1) 指定-L $HOME作为命令行参数,并在模块规范中给出相对路径名。因此,在您的情况下,命令行如下所示:

jq -L $HOME 'import ".jq/urldecode" as url_decode; ...

或者:

jq -L $HOME 'include ".jq/urldecode"; ...

(2) 使用 {search: _} 功能,例如

jq 'include "urldecode" {search: "~/.jq"} ; ...' ...
jq 'import "urldecode" as url_decode {search: "~/.jq"} ; ...' ...

关于module - jq中调用自定义模块的格式是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53937411/

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