gpt4 book ai didi

javascript - 如何使用 Express 框架发出 AJAX 请求?

转载 作者:IT老高 更新时间:2023-10-28 22:07:22 26 4
gpt4 key购买 nike

我想使用 Express 发送 AJAX 请求。我正在运行如下代码:

var express = require('express');
var app = express();

app.get('/', function(req, res) {
// here I would like to make an external
// request to another server
});

app.listen(3000);

我该怎么做?

最佳答案

您可以使用 request图书馆

var request = require('request');
request('http://localhost:6000', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body) // Print the body of response.
}
})

关于javascript - 如何使用 Express 框架发出 AJAX 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19074727/

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