我怎样才能让使用防爆preSS框架,AJAX请求?框架、preSS、AJAX

2023-09-10 13:42:09 作者:安分小男人⌒

我想用防爆preSS发送AJAX请求。我运行code,看起来像下面这样:

I want to send AJAX requests using Express. I am running code that looks like the following:

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);

我将如何做到这一点?

How would I do this?

推荐答案

您不需要防爆preSS进行传出HTTP请求。使用本机模块是:

You don't need Express to make an outgoing HTTP request. Use the native module for that:

var http = require('http');

var options = {
  host: 'example.com',
  port: '80',
  path: '/path',
  method: 'POST',
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded',
    'Content-Length': post_data.length
  }
};

var req = http.request(options, function(res) {
  // response is here
});

// write the request parameters
req.write('post=data&is=specified&like=this');
req.end();