我有一个 React 前端,它使用 jwt 与 Django 后端进行身份验证。后端工作并且使用 django 视图连接得很好,但是当我尝试代理来自 React 的请求时,它给了我一个连接拒绝错误。
代理错误:无法将请求 /api/auth/token/obtain/ 从 localhost:3000 代理到http://localhost:8000 (ECONNREFUSED)。
连接到http://localhost:8000/api/auth/token/obtain/工作正常。并且用axios发送POST请求也正常,返回token json。但是当我用节点代理它时,它不起作用。
在我的package.json
我有:
"proxy": {
"/api/*": {
"target": "http://localhost:8000"
}
},
编辑: 公共回购。如果安装了 docker,则可以轻松运行。(使用 1 个图像和 2 个容器)。克隆后直接运行docker-compose build
,然后docker-compose up
。
编辑2:请求标题:
*General*
Request URL: http://localhost:3000/api/auth/token/obtain/
Request Method: POST
Status Code: 500 Internal Server Error
Remote Address: [::1]:3000
Referrer Policy: no-referrer-when-downgrade
*Response Headers*
HTTP/1.1 500 Internal Server Error
X-Powered-By: Express
Date: Mon, 30 Apr 2018 21:23:17 GMT
Connection: keep-alive
Transfer-Encoding: chunked
*Request Headers
POST /api/auth/token/obtain/ HTTP/1.1
Host: localhost:3000
Connection: keep-alive
Content-Length: 45
Pragma: no-cache
Cache-Control: no-cache
Origin: http://localhost:3000
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36
Content-Type: application/json
Accept: */*
Referer: http://localhost:3000/login
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9,fr;q=0.8,ja;q=0.7