gpt4 book ai didi

common-lisp - 如何在 Hunchentoot 或 Clack 中启用 CORS,或者如何添加特定标题?

转载 作者:行者123 更新时间:2023-12-02 03:00:00 26 4
gpt4 key购买 nike

问题说明了一切。本教程:https://www.html5rocks.com/en/tutorials/cors/说,至少,添加一个 Access-Control-Allow-Origin: *服务器响应的 header 。

我的应用程序,运行 Hunchentoot,没有返回它:

<!-- GET http://127.0.0.1:9000/ -->
<!-- HTTP/1.1 200 OK -->
<!-- Date: Fri, 13 Oct 2017 23:26:58 GMT -->
<!-- Server: Hunchentoot 1.2.37 -->
<!-- Keep-Alive: timeout=20 -->
<!-- Connection: Keep-Alive -->
<!-- Transfer-Encoding: chunked -->
<!-- Content-Type: text/html;charset=utf-8 -->
<!-- Request duration: 0.004275s -->

我看了 Hunchentoot's doc和它的 headers.lisp文件,但找不到任何特定于 CORS 的内容,并且不明白如何简单地添加标题。

有什么帮助吗?谢谢 !

编辑:我实际上在使用 Lucerne 和 Clack。
(in-package :cl-user)
(defpackage lisp-todo
(:use :cl
:lucerne)
(:export :app)
(:documentation "Main lisp-todo code."))
(in-package :lisp-todo)

添加
(defun change-headers (headers)
(setf (lack.response:response-headers *response*) headers))

C-c C-c =>

package lack.response does not exist.



或使用 Hunchentoot:
(setf (hunchentoot:header-out "Access-Control-Allow-Origin") "*")

the variable Hunchentoot:*reply* is unbound.



实际上这个变量是用 def-unbound 定义的.

编辑 2:尝试使用 Ningle
(in-package :cl-user)
(defpackage todobackend-ningle
(:use :cl))
(in-package :todobackend-ningle)

;; blah blah blah.

(defvar *response* nil "") ;; to try the snippet below

(defun change-headers (headers)
;; (setf (lack.response:response-headers *response*) headers)) ;; => the value nil is not of type lack.response:response
(setf (lack.response:response-headers lack.response:response) headers)) ;; => unbound

(defvar *app* (make-instance 'ningle:<app>))

(change-headers '(:access-control-allow-origin "*"))

(setf (ningle:route *app* "/")
(lambda (params) ;; is that right ?
(change-headers '(:access-control-allow-origin "*"))
"Welcome to ningle!"))

最佳答案

这是我用于 Clack with Ningle 的代码,希望它可以帮助您:

(defpackage ...
(:use :cl :ningle))
(in-package ...)

(defun change-headers (headers)
(setf (lack.response:response-headers *response*) headers))

(defmacro api-route (url method en-tetes &body corps)
`(setf (ningle:route *app* ,url :method ,method)
;; that's why your code doesn't work, you actually have to pass a #'function
#'(lambda (params)
(change-headers ,headers)
,@corps)))

注: *response*来自 ningle.context ,根据文件中的注释,我可能用错了它。

此宏可用于创建路由并指定 header ,如下所示:
(api-route
"/"
:get
'(:access-control-allow-origin "*")
"Welcome!")

请记住,这对于 GET 来说已经足够了。请求,但对于其他动词,浏览器将首先点击 OPTIONS .你必须至少用这些标题来回答它:
  '(:access-control-allow-methods "POST"          ; or any other verb(s)
:access-control-allow-origin "*"
:access-control-allow-headers "content-type")

这段代码来自我的一个小玩具项目。你可以看看 the rest of it如果你愿意,希望它能给你一些想法。这没什么了不起的,可能有更好的方法来做到这一点,但是嘿——它有效。

关于common-lisp - 如何在 Hunchentoot 或 Clack 中启用 CORS,或者如何添加特定标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46739404/

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