gpt4 book ai didi

lisp - cl-who 和格式

转载 作者:太空宇宙 更新时间:2023-11-03 18:46:24 25 4
gpt4 key购买 nike

我正在尝试使用 cl-who 生成以下 html 代码:

<html>
<body>
<div id="cnt_1"></div>
<div id="cnt_2"></div>
<div id="cnt_3"></div>
</body>
</html>

下面是我认为可行的代码:

(with-html-output-to-string (*standard-output* nil)
(:html
(:body
(do ((cnt 1 (+ cnt 1)))
((> cnt 3))
(htm (:div :id (format t "cnt_~A" cnt)))))))

但是我得到了以下输出:

<html><body><divcnt_1></div><divcnt_2></div><divcnt_3></div></body></html>

似乎 :id 不适用于函数调用。这是否意味着我不能在 cl-who 中使用格式?我应该改用什么?

最佳答案

那是因为你不想直接在流中写入。

CL-USER> (with-html-output-to-string (s) (:div :id "test"))
"<div id='test'></div>"

CL-USER> (with-html-output-to-string (s)
(:html
(:body
(do ((cnt 1 (+ cnt 1)))
((> cnt 3))
(htm (:div :id (format nil "cnt_~A" cnt)))))))

"<html><body><div id='cnt_1'></div><div id='cnt_2'></div><div id='cnt_3'></div></body></html>"

顺便说一句,如果您想直接在流中写入,请使用 CL-WHO:FMT。

关于lisp - cl-who 和格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11313795/

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