作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个需要 hunchentoot 网络服务器的网络应用程序。我几乎没有关于 hunchentoot 或任何 Web 服务器的工作知识,我想知道我用 Common Lisp 编写的应用程序如何将页面提供给 Web 客户端。我见过一些很好的例子(例如 Hunchentoot Primer , Lisp for the Web)尤其是。 Hunchentoot 页面上列出的那个。你知道我在哪里可以找到更多这样的例子吗?
谢谢。
最佳答案
I am wondering how my app written in Common Lisp would serve pages to a web client.
*dispatch-table*
中的所有内容,这只是调度处理程序的列表。
(push (create-static-file-dispatcher-and-handler "/example.css"
"example.css")
*dispatch-table*)
(defun foo ()
(with-html-output-to-string ; ...
))
(push (create-prefix-dispatcher "/foo.html" 'foo)
*dispatch-table*)
关于common-lisp - 如何将 Web 应用程序连接到 Hunchentoot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1022462/
我是一名优秀的程序员,十分优秀!