直到最近,当我将 Hunchentoot 升级到最新版本时,以下使用 Hunchentoot 和 html-template 的代码才允许我提供动态网页。有人可以建议我在下面的代码中哪里出错了吗?我认为问题出在宏定义中?
(defmacro define-url-fn ((name) &body body)
`(progn
(defun ,name ()
,@body)
(push (create-prefix-dispatcher ,(format nil "/~(~a~).html" name) ',name) *dispatch-table*)))
(define-url-fn (sign-up)
(with-output-to-string (stream)
(let* ((values (list :username-error-msg *register-error*)))
(fill-and-print-template #p"/ELEPHUND/INTERFACE/sign-up.tmpl" values :stream stream))))