이 글은 주로 요청을 보내는 구현 방법을 공유합니다. 모든 사람에게 도움이 되기를 바랍니다. 노드는 중간 서비스 계층으로 요청을 어떻게 전송합니까?
GET 요청:
var http = require('http'); var qs = require('querystring'); var data = { a: 123, time: new Date().getTime()};//这是需要提交的数据 var content = qs.stringify(data); var options = { hostname: '127.0.0.1', port: 10086, path: '/pay/pay_callback?' + content, method: 'GET' }; var req = http.request(options, function (res) { console.log('STATUS: ' + res.statusCode); console.log('HEADERS: ' + JSON.stringify(res.headers)); res.setEncoding('utf8'); res.on('data', function (chunk) { console.log('BODY: ' + chunk); }); }); req.on('error', function (e) { console.log('problem with request: ' + e.message); }); req.end();
POST 요청:
var http = require('http'); var qs = require('querystring'); var post_data = { a: 123, time: new Date().getTime()};//这是需要提交的数据 var content = qs.stringify(post_data); var options = { hostname: '127.0.0.1', port: 10086, path: '/pay/pay_callback', method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' } }; var req = http.request(options, function (res) { console.log('STATUS: ' + res.statusCode); console.log('HEADERS: ' + JSON.stringify(res.headers)); res.setEncoding('utf8'); res.on('data', function (chunk) { console.log('BODY: ' + chunk); }); }); req.on('error', function (e) { console.log('problem with request: ' + e.message); }); // write data to request body req.write(content); req.end();
관련 권장 사항:
curl을 사용하여 PHP로 요청 보내기(GET 요청 및 POST 요청)
JavaScript_javascript 기술에서 XMLHttpRequest를 통해 요청을 보내는 코드
jquery+ajax는 매초 요청 데이터를 백그라운드로 보낸 다음 page_jquery
의 코드를 반환합니다.위 내용은 요청을 보내기 위해 노드를 중간 서비스 계층으로 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!