gpt4 book ai didi

javascript - TypeError : response. 重定向不是函数

转载 作者:行者123 更新时间:2023-11-30 19:07:44 25 4
gpt4 key购买 nike

我需要帮助...

所以,我有这段代码

var express = require('express');
var app = express();
//Sites
// Landingpage CourseWorkers ----------------------------------------
app_courseworkers = require('./sites/app')
app_https_courseworkers = (req, response) => response.redirect("https://courseworkers.com")

但是当我在服务器上运行它时,我收到消息:

0|index  | TypeError: response.redirect is not a function
0|index | at Object.app_https_courseworkers [as handler] (/var/www/html/courseworkers/index.js:9:55)
0|index | at Server.overallHandler (/var/www/html/courseworkers/node_modules/vhttps/lib/init.js:103:25)
0|index | at emitTwo (events.js:126:13)
0|index | at Server.emit (events.js:214:7)
0|index | at parserOnIncoming (_http_server.js:619:12)
0|index | at HTTPParser.parserOnHeadersComplete (_http_common.js:115:23)

谁能指出我做错了什么?

注意:在本地运行正常

最佳答案

如果您尝试在有人访问您网站上的特定 URL 时重定向到外部 URL,请尝试以下操作:

app.get("/course", (req, res) => {
res.redirect("https://courseworkers.com");
});

我的猜测是,您正在尝试调用 app_https_courseworkers(req, response),但您实际上并未传递有效的响应对象。

关于javascript - TypeError : response. 重定向不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58820637/

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