4
我嘗試實現一個基於Hunchentoot的簡單後期示例。無法在LISP hunchentoot中獲得帖子
下面是代碼:
(define-easy-handler (test :uri "/test")()
(with-html-output-to-string (*standard-output* nil :prologue t :indent t)
(:html
(:body
(:h1 "Test")
(:form :action "/test2" :method "post" :id "addform"
(:input :type "text" :name "name" :class "txt")
(:input :type "submit" :class "btn" :value "Submit"))))))
(define-easy-handler (test2 :uri "/test2") (name)
(with-html-output-to-string (*standard-output* nil :prologue t :indent t)
(:html
(:body
(:h1 name)))))
我可以正確連接到http://127.0.0.1:8080/test和看到的文字輸入方式。但是當我提交文本時,我得到一個空白頁面,我期待在文本輸入中給出標題的頁面。
不知道什麼是錯,任何人都可以建議嗎?
非常感謝。有用。我會盡力在文檔中說明這一點。 – Xaving 2015-02-11 12:58:53