如何使用 Common Lisp 中称为 Quri 的替代库获得 puri:uri-parsed-path 的相同输出?

How to have the same output of puri:uri-parsed-path using the alternative library in Common Lisp called Quri?

使用 CL (SBCL) 和 Puri 库,我获得了 Slime 的 REPL:

CL-USER> (puri:uri-parsed-path  (puri:parse-uri "http://www.gnu.org/software/emacs/manual/html_node/emacs/index.html"))

(:ABSOLUTE "software" "emacs" "manual" "html_node" "emacs" "index.html")

我正在尝试使用 Quri 而不是 Puri 来实现相同的输出(包含来自 URL 路径的拆分项的列表)。

不幸的是,我没有实现它。我试过 quri-parse-path:

CL-USER> quri-object
#<QURI.URI.HTTP:URI-HTTP http://www.gnu.org/software/emacs/>
CL-USER> (quri:parse-path (quri:uri-path quri-object))
"/software/emacs/"
0
16

库是否已经支持此操作?

我不确定仅通过阅读 Quri 的文档就可以做到。不过我还是个CL小白

我建议获取 uri 路径,并按“/”分割:

(quri:uri "http://www.gnu.org/software/emacs/manual/html_node/emacs/index.html")
#<QURI.URI.HTTP:URI-HTTP http://www.gnu.org/software/emacs/manual/html_node/emacs/index.html>

(quri:uri-path *)
"/software/emacs/manual/html_node/emacs/index.html"

(ql:quickload "str")
(str:split "/" * :omit-nulls t)
("software" "emacs" "manual" "html_node" "emacs" "index.html")